File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ if [ -z "$example" ]; then
20
20
exit 1
21
21
fi
22
22
23
- PRE=" # EXAMPLE $example |"
23
+ PRE=" # DEMO $example |"
24
24
dir=" ./$example /godot"
25
25
logfile=" stderr-$example .log"
26
26
# stdout also outputs some "ERROR:" messages, these are currently ignored.
Original file line number Diff line number Diff line change @@ -175,9 +175,9 @@ jobs:
175
175
artifact-name : linux-nightly
176
176
godot-binary : godot.linuxbsd.editor.dev.x86_64
177
177
178
- - name : linux-4.3
178
+ - name : linux-4.4
179
179
os : ubuntu-22.04
180
- artifact-name : linux-4.3
180
+ artifact-name : linux-4.4
181
181
godot-binary : godot.linuxbsd.editor.dev.x86_64
182
182
183
183
# Deliberately don't include:
@@ -223,7 +223,8 @@ jobs:
223
223
224
224
# List all folders in current directory. Don't quote $files variable.
225
225
for demo in $files; do
226
- ./.github/other/check-example.sh "$demo"
226
+ # Strip trailing '/' from folder name.
227
+ ./.github/other/check-example.sh "${demo%/}"
227
228
done
228
229
229
230
Original file line number Diff line number Diff line change @@ -67,8 +67,8 @@ shape = SubResource("2")
67
67
[node name ="Trail" type ="GPUParticles2D" parent ="." ]
68
68
z_index = -1
69
69
amount = 10
70
- process_material = SubResource ("7" )
71
70
texture = ExtResource ("2" )
72
71
speed_scale = 2.0
72
+ process_material = SubResource ("7" )
73
73
74
74
[connection signal ="body_entered" from ="." to ="." method ="on_player_body_entered" ]
You can’t perform that action at this time.
0 commit comments