mirror of
https://github.com/tonytins/dressupzack
synced 2025-06-26 08:34:43 -04:00
Reorganized clothing nodes
This commit is contained in:
parent
c761b47f11
commit
99e07176f6
16 changed files with 53 additions and 19 deletions
13
scenes/clothing/pants/beatUpJeans.tscn
Normal file
13
scenes/clothing/pants/beatUpJeans.tscn
Normal file
|
@ -0,0 +1,13 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=2]
|
||||
[ext_resource path="res://sprites/clothes/beat_up_jeans.svg" type="Texture" id=3]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="beatUpJeans" instance=ExtResource( 1 )]
|
||||
texture_normal = ExtResource( 3 )
|
||||
script = ExtResource( 2 )
|
||||
[connection signal="pressed" from="." to="." method="_on_bottoms_pressed"]
|
13
scenes/clothing/pants/camoJeans.tscn
Normal file
13
scenes/clothing/pants/camoJeans.tscn
Normal file
|
@ -0,0 +1,13 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://sprites/clothes/blue_camo_jeans.svg" type="Texture" id=1]
|
||||
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=3]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="camoJeans" instance=ExtResource( 2 )]
|
||||
texture_normal = ExtResource( 1 )
|
||||
script = ExtResource( 3 )
|
||||
[connection signal="pressed" from="." to="." method="_on_bottoms_pressed"]
|
13
scenes/clothing/pants/djShorts.tscn
Normal file
13
scenes/clothing/pants/djShorts.tscn
Normal file
|
@ -0,0 +1,13 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://sprites/clothes/dj_shorts.svg" type="Texture" id=1]
|
||||
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=3]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="camoJeans" instance=ExtResource( 2 )]
|
||||
texture_normal = ExtResource( 1 )
|
||||
script = ExtResource( 3 )
|
||||
[connection signal="pressed" from="." to="." method="_on_bottoms_pressed"]
|
11
scenes/clothing/pants/formalSkirt.tscn
Normal file
11
scenes/clothing/pants/formalSkirt.tscn
Normal file
|
@ -0,0 +1,11 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=2]
|
||||
[ext_resource path="res://sprites/clothes/formal_skirt.svg" type="Texture" id=3]
|
||||
|
||||
|
||||
[node name="formalSkirt" instance=ExtResource( 1 )]
|
||||
texture_normal = ExtResource( 3 )
|
||||
script = ExtResource( 2 )
|
||||
[connection signal="pressed" from="." to="." method="_on_bottoms_pressed"]
|
11
scenes/clothing/pants/jeans.tscn
Normal file
11
scenes/clothing/pants/jeans.tscn
Normal file
|
@ -0,0 +1,11 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=2]
|
||||
[ext_resource path="res://sprites/clothes/jeans.svg" type="Texture" id=3]
|
||||
|
||||
|
||||
[node name="jeans" instance=ExtResource( 1 )]
|
||||
texture_normal = ExtResource( 3 )
|
||||
script = ExtResource( 2 )
|
||||
[connection signal="pressed" from="." to="." method="_on_bottoms_pressed"]
|
11
scenes/clothing/pants/skirt.tscn
Normal file
11
scenes/clothing/pants/skirt.tscn
Normal file
|
@ -0,0 +1,11 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scripts/clothing/bottomsBase.gd" type="Script" id=2]
|
||||
[ext_resource path="res://sprites/clothes/blue_skirt.svg" type="Texture" id=3]
|
||||
|
||||
|
||||
[node name="skirt" instance=ExtResource( 1 )]
|
||||
texture_normal = ExtResource( 3 )
|
||||
script = ExtResource( 2 )
|
||||
[connection signal="pressed" from="." to="." method="_on_bottoms_pressed"]
|
Loading…
Add table
Add a link
Reference in a new issue