1
Fork 0
mirror of https://github.com/Steffo99/looping-for-loops.git synced 2024-11-21 23:54:23 +00:00
looping-for-loops/Objects/ScrollingObjects/Buzzsaw.tscn

49 lines
1.5 KiB
Text
Raw Permalink Normal View History

2020-10-04 15:29:28 +00:00
[gd_scene load_steps=7 format=2]
[ext_resource path="res://Sprites/saw.png" type="Texture" id=1]
2020-10-04 14:35:24 +00:00
[ext_resource path="res://Objects/ScrollingObjects/Buzzsaw.gd" type="Script" id=2]
2020-10-04 15:29:28 +00:00
[ext_resource path="res://Objects/ScrollingObjects/Utilities/ConveyorScrollParent.tscn" type="PackedScene" id=3]
[ext_resource path="res://Objects/ScrollingObjects/Utilities/WrapParent.tscn" type="PackedScene" id=4]
[sub_resource type="CircleShape2D" id=1]
radius = 71.9263
[sub_resource type="Animation" id=2]
resource_name = "SpinClockwise"
loop = true
tracks/0/type = "value"
tracks/0/path = NodePath("Sprite:rotation_degrees")
tracks/0/interp = 1
tracks/0/loop_wrap = true
tracks/0/imported = false
tracks/0/enabled = true
tracks/0/keys = {
"times": PoolRealArray( 0, 1 ),
"transitions": PoolRealArray( 1, 1 ),
"update": 0,
"values": [ 0.0, 360.0 ]
}
[node name="Buzzsaw" type="Area2D"]
collision_layer = 8
collision_mask = 2
script = ExtResource( 2 )
[node name="CollisionShape2D" type="CollisionShape2D" parent="."]
2020-10-05 14:38:54 +00:00
z_index = 2
shape = SubResource( 1 )
2020-10-05 14:38:54 +00:00
[node name="Sprite" type="Sprite" parent="."]
rotation = 6.28319
z_index = 1
texture = ExtResource( 1 )
[node name="AnimationPlayer" type="AnimationPlayer" parent="."]
anims/SpinClockwise = SubResource( 2 )
2020-10-04 14:35:24 +00:00
[node name="ConveyorScrollParent" parent="." instance=ExtResource( 3 )]
2020-10-04 15:29:28 +00:00
[node name="WrapParent" parent="." instance=ExtResource( 4 )]
position = Vector2( 80, 0 )
[connection signal="body_entered" from="." to="." method="_on_Buzzsaw_body_entered"]