diff --git a/.gitea/workflows/godot-ci.yml b/.gitea/workflows/godot-ci.yml index ec638a9..e0b3850 100644 --- a/.gitea/workflows/godot-ci.yml +++ b/.gitea/workflows/godot-ci.yml @@ -164,6 +164,10 @@ jobs: SHORT_SHA=$(echo $GITHUB_SHA | cut -c1-8) sed -i -e "s/STEAM_DESCRIPTION/${GITHUB_REF_NAME} - ${SHORT_SHA}/" build/build_dependencies/steam/app_build_2739610.vdf + # There is a chacne that if you fail enough uplaods, steam will rate limit you. + # But to get a new steamguard code, you need to fail at least once to get the emial with the code + # The ratelimit time isn't published, but I saw in a reddit commit that its 30 minutes, but if you fail in that 30 mintues, it resets the timer + # Waiting 30 mintues worked for me, idk if that supersition is real or not :) - name: Publish to Steam run: | cd $PROJECT_PATH diff --git a/demo_scene.tscn b/demo_scene.tscn index 970ac86..7940624 100644 --- a/demo_scene.tscn +++ b/demo_scene.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=7 format=3 uid="uid://bgpec3avuotkt"] +[gd_scene load_steps=8 format=3 uid="uid://bgpec3avuotkt"] [sub_resource type="ProceduralSkyMaterial" id="ProceduralSkyMaterial_no5d7"] sky_top_color = Color(0.340506, 0.443905, 0.662582, 1) @@ -23,6 +23,8 @@ glow_enabled = true [sub_resource type="TorusMesh" id="TorusMesh_no5d7"] +[sub_resource type="PrismMesh" id="PrismMesh_no5d7"] + [node name="Node3D" type="Node3D"] [node name="DirectionalLight3D" type="DirectionalLight3D" parent="."] @@ -53,5 +55,9 @@ mesh = SubResource("SphereMesh_no5d7") transform = Transform3D(0.9115, 0.389701, -0.131535, 0.290076, -0.382369, 0.877297, 0.291589, -0.837811, -0.461572, -0.27379, 0.506899, -0.0184803) mesh = SubResource("TorusMesh_no5d7") +[node name="MeshInstance3D6" type="MeshInstance3D" parent="."] +transform = Transform3D(0.9115, 0.389701, -0.131535, -0.401298, 0.772528, -0.492098, -0.090157, 0.501331, 0.860545, 0.687872, -1.41347, -0.0184803) +mesh = SubResource("PrismMesh_no5d7") + [node name="Camera3D" type="Camera3D" parent="."] transform = Transform3D(-0.998152, 0, -0.0607699, 0, 1, 0, 0.0607699, 0, -0.998152, 0, 0, -2.11699)