Erster Prototyp
This commit is contained in:
parent
2da5af8954
commit
885351b624
48 changed files with 1350 additions and 0 deletions
4
scenes/Block/Snake/Snake_Collision.tscn
Normal file
4
scenes/Block/Snake/Snake_Collision.tscn
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
[gd_scene format=3 uid="uid://m02134rcpv2p"]
|
||||
|
||||
[node name="CollisionPolygon2D" type="CollisionPolygon2D"]
|
||||
polygon = PackedVector2Array(128, 0, 128, -64, 0, -64, 0, 0, -64, 0, -64, 64, 64, 64, 64, 0)
|
||||
1
scenes/Block/Snake/Snake_block.gd
Normal file
1
scenes/Block/Snake/Snake_block.gd
Normal file
|
|
@ -0,0 +1 @@
|
|||
extends "res://scenes/Block/block.gd"
|
||||
66
scenes/Block/Snake/Snake_block.tscn
Normal file
66
scenes/Block/Snake/Snake_block.tscn
Normal file
|
|
@ -0,0 +1,66 @@
|
|||
[gd_scene load_steps=4 format=3 uid="uid://bnsptw7gc7mmp"]
|
||||
|
||||
[ext_resource type="PackedScene" uid="uid://bu6grrxuhypny" path="res://scenes/Block/block.tscn" id="1_yh2qq"]
|
||||
[ext_resource type="Script" path="res://scenes/Block/Snake/Snake_block.gd" id="2_5tnwi"]
|
||||
[ext_resource type="PackedScene" uid="uid://m02134rcpv2p" path="res://scenes/Block/Snake/Snake_Collision.tscn" id="3_447tx"]
|
||||
|
||||
[node name="Block" instance=ExtResource("1_yh2qq")]
|
||||
script = ExtResource("2_5tnwi")
|
||||
|
||||
[node name="CollisionPolygon2D" parent="Tests/Position 1" index="0" instance=ExtResource("3_447tx")]
|
||||
|
||||
[node name="CollisionPolygon2D" parent="Tests/Position 2" index="0" instance=ExtResource("3_447tx")]
|
||||
rotation = 1.57079
|
||||
|
||||
[node name="CollisionPolygon2D" parent="Tests/Position 3" index="0" instance=ExtResource("3_447tx")]
|
||||
|
||||
[node name="CollisionPolygon2D" parent="Tests/Position 4" index="0" instance=ExtResource("3_447tx")]
|
||||
rotation = 1.57079
|
||||
|
||||
[node name="Marker2D" type="Marker2D" parent="Position 1" index="0"]
|
||||
position = Vector2(-32, 32)
|
||||
|
||||
[node name="Marker2D2" type="Marker2D" parent="Position 1" index="1"]
|
||||
position = Vector2(32, 32)
|
||||
|
||||
[node name="Marker2D3" type="Marker2D" parent="Position 1" index="2"]
|
||||
position = Vector2(32, -32)
|
||||
|
||||
[node name="Marker2D4" type="Marker2D" parent="Position 1" index="3"]
|
||||
position = Vector2(96, -32)
|
||||
|
||||
[node name="Marker2D" type="Marker2D" parent="Position 2" index="0"]
|
||||
position = Vector2(-32, -32)
|
||||
|
||||
[node name="Marker2D2" type="Marker2D" parent="Position 2" index="1"]
|
||||
position = Vector2(-32, 32)
|
||||
|
||||
[node name="Marker2D3" type="Marker2D" parent="Position 2" index="2"]
|
||||
position = Vector2(32, 32)
|
||||
|
||||
[node name="Marker2D4" type="Marker2D" parent="Position 2" index="3"]
|
||||
position = Vector2(32, 96)
|
||||
|
||||
[node name="Marker2D" type="Marker2D" parent="Position 3" index="0"]
|
||||
position = Vector2(-32, 32)
|
||||
|
||||
[node name="Marker2D2" type="Marker2D" parent="Position 3" index="1"]
|
||||
position = Vector2(32, 32)
|
||||
|
||||
[node name="Marker2D3" type="Marker2D" parent="Position 3" index="2"]
|
||||
position = Vector2(32, -32)
|
||||
|
||||
[node name="Marker2D4" type="Marker2D" parent="Position 3" index="3"]
|
||||
position = Vector2(96, -32)
|
||||
|
||||
[node name="Marker2D" type="Marker2D" parent="Position 4" index="0"]
|
||||
position = Vector2(-32, -32)
|
||||
|
||||
[node name="Marker2D2" type="Marker2D" parent="Position 4" index="1"]
|
||||
position = Vector2(-32, 32)
|
||||
|
||||
[node name="Marker2D3" type="Marker2D" parent="Position 4" index="2"]
|
||||
position = Vector2(32, 32)
|
||||
|
||||
[node name="Marker2D4" type="Marker2D" parent="Position 4" index="3"]
|
||||
position = Vector2(32, 96)
|
||||
Loading…
Add table
Add a link
Reference in a new issue