1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- [gd_scene load_steps=5 format=2]
- [ext_resource path="res://scripts/OutboundPad.gd" type="Script" id=1]
- [ext_resource path="res://scripts/Pads.gd" type="Script" id=2]
- [ext_resource path="res://scripts/IncomingPad.gd" type="Script" id=3]
- [sub_resource type="BoxShape" id=1]
- [node name="Pads" type="Spatial"]
- transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 4.2808, 0, 5.4267 )
- script = ExtResource( 2 )
- [node name="JumpPadOut" type="Spatial" parent="."]
- transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, -2.29982 )
- script = ExtResource( 1 )
- [node name="Area" type="Area" parent="JumpPadOut"]
- collision_mask = 9
- [node name="CollisionShape" type="CollisionShape" parent="JumpPadOut/Area"]
- transform = Transform( 0.687351, 0, 0, 0, 1, 0, 0, 0, 2.28388, 0.836665, 0, 0 )
- shape = SubResource( 1 )
- [node name="orient" type="Spatial" parent="JumpPadOut"]
- transform = Transform( -4.37114e-08, 0, 1, 0, 1, 0, -1, 0, -4.37114e-08, 0, 0, 0 )
- [node name="JumpPadIn" type="Spatial" parent="."]
- transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 1.7362 )
- script = ExtResource( 3 )
- left = false
- [node name="orient" type="Spatial" parent="JumpPadIn"]
- transform = Transform( -4.37114e-08, 0, -1, 0, 1, 0, 1, 0, -4.37114e-08, 0, 0, 0.589586 )
- [node name="Area" type="Area" parent="JumpPadIn"]
- transform = Transform( 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0.527389 )
- collision_mask = 9
- [node name="CollisionShape" type="CollisionShape" parent="JumpPadIn/Area"]
- transform = Transform( 0.687351, 0, 0, 0, 1, 0, 0, 0, 2.28388, 0.836665, 0, 0 )
- shape = SubResource( 1 )
- [connection signal="body_entered" from="JumpPadOut/Area" to="JumpPadOut" method="_on_Area_body_entered"]
- [connection signal="body_entered" from="JumpPadIn/Area" to="JumpPadIn" method="_on_Area_body_entered"]
|