This commit is contained in:
Mikhail Aristov 2024-01-27 14:08:40 +01:00
parent 0c5a0ad84a
commit 4d2762773e
2 changed files with 10 additions and 6 deletions

View File

@ -1,5 +1,5 @@
class_name AudienceMember class_name AudienceMember
extends Sprite2D extends Node2D
@export var mood : float = 0. @export var mood : float = 0.

View File

@ -2,19 +2,23 @@
[ext_resource type="Script" path="res://scenes/crowd/person.gd" id="1_mx0i8"] [ext_resource type="Script" path="res://scenes/crowd/person.gd" id="1_mx0i8"]
[ext_resource type="Script" path="res://scenes/crowd/audience_profile.gd" id="2_bsodr"] [ext_resource type="Script" path="res://scenes/crowd/audience_profile.gd" id="2_bsodr"]
[ext_resource type="Texture2D" uid="uid://dqxv2u4xiwiup" path="res://sprites/bodies/body_blue_2.svg" id="2_t0w5c"]
[sub_resource type="PlaceholderTexture2D" id="PlaceholderTexture2D_kbo53"]
size = Vector2(20, 30)
[sub_resource type="RectangleShape2D" id="RectangleShape2D_5rd5b"] [sub_resource type="RectangleShape2D" id="RectangleShape2D_5rd5b"]
[node name="Person" type="Sprite2D" node_paths=PackedStringArray("head", "profile")] [node name="Person" type="Node2D" node_paths=PackedStringArray("head", "profile")]
texture = SubResource("PlaceholderTexture2D_kbo53")
script = ExtResource("1_mx0i8") script = ExtResource("1_mx0i8")
head = NodePath("Head") head = NodePath("Head")
profile = NodePath("Profile") profile = NodePath("Profile")
expression = 1 expression = 1
[node name="Body" type="Node2D" parent="."]
position = Vector2(0, 15)
scale = Vector2(0.3, 0.3)
[node name="BodyBlue2" type="Sprite2D" parent="Body"]
texture = ExtResource("2_t0w5c")
[node name="Head" type="Node2D" parent="."] [node name="Head" type="Node2D" parent="."]
position = Vector2(0, -16) position = Vector2(0, -16)
scale = Vector2(0.3, 0.3) scale = Vector2(0.3, 0.3)