GodotComponentTest/entities/SimpleEntity.tscn

21 lines
743 B
Plaintext
Raw Normal View History

2022-08-19 18:48:54 +02:00
[gd_scene load_steps=6 format=2]
2022-08-17 00:50:30 +02:00
2022-08-25 14:10:02 +02:00
[ext_resource path="res://components/TintedSpriteComponent.gd" type="Script" id=1]
[ext_resource path="res://entities/SimpleEntity.gd" type="Script" id=2]
[ext_resource path="res://components/ColorComponent.gd" type="Script" id=3]
[ext_resource path="res://components/ClickableComponent.tscn" type="PackedScene" id=4]
2022-08-17 00:50:30 +02:00
[ext_resource path="res://icon.png" type="Texture" id=5]
[node name="SimpleEntity" type="Node2D"]
script = ExtResource( 2 )
2022-08-20 14:36:17 +02:00
[node name="Clickable" parent="." instance=ExtResource( 4 )]
2022-08-17 00:50:30 +02:00
2022-08-20 14:36:17 +02:00
[node name="TintedSprite" type="Sprite" parent="."]
2022-08-17 00:50:30 +02:00
texture = ExtResource( 5 )
script = ExtResource( 1 )
2022-08-20 14:36:17 +02:00
[node name="Color" type="Node" parent="."]
2022-08-17 00:50:30 +02:00
script = ExtResource( 3 )
color = Color( 1, 1, 1, 1 )