mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-05 13:34:48 -04:00
Reorganized clothing nodes
This commit is contained in:
parent
c761b47f11
commit
99e07176f6
16 changed files with 53 additions and 19 deletions
|
@ -1,7 +1,10 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scripts/clothing/accessoryBase.gd" type="Script" id=1]
|
||||
[ext_resource path="res://scenes/clothing/baseClothing.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=2]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="accessoryBase" instance=ExtResource( 2 )]
|
||||
script = ExtResource( 1 )
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[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]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="bottomsBase" instance=ExtResource( 1 )]
|
||||
script = ExtResource( 2 )
|
||||
[connection signal="pressed" from="." to="." method="_on_bottoms_pressed"]
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scripts/clothing/topsBase.gd" type="Script" id=2]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="topsBase" instance=ExtResource( 1 )]
|
||||
script = ExtResource( 2 )
|
||||
[connection signal="pressed" from="." to="." method="_on_tops_pressed"]
|
||||
|
|
|
@ -1,7 +1,10 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scripts/clothing/undiesBase.gd" type="Script" id=1]
|
||||
[ext_resource path="res://scenes/clothing/baseClothing.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://scenes/clothing/base/baseClothing.tscn" type="PackedScene" id=2]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="baseClothing" instance=ExtResource( 2 )]
|
||||
script = ExtResource( 1 )
|
||||
|
|
|
@ -4,6 +4,8 @@
|
|||
[ext_resource path="res://sprites/clothes/camera.png" type="Texture" id=2]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="camera" instance=ExtResource( 1 )]
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
|
|
|
@ -1,9 +1,12 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[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 )
|
|
@ -1,9 +1,12 @@
|
|||
[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/baseClothing.tscn" type="PackedScene" id=2]
|
||||
[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 )
|
|
@ -1,9 +1,12 @@
|
|||
[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/baseClothing.tscn" type="PackedScene" id=2]
|
||||
[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 )
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[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 )
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[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 )
|
|
@ -1,9 +1,10 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[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 )
|
|
@ -4,5 +4,7 @@
|
|||
[ext_resource path="res://scenes/clothing/base/undiesBase.tscn" type="PackedScene" id=2]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="briefs" instance=ExtResource( 2 )]
|
||||
texture_normal = ExtResource( 1 )
|
|
@ -4,6 +4,8 @@
|
|||
[ext_resource path="res://scenes/clothing/base/undiesBase.tscn" type="PackedScene" id=2]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="fundosi" instance=ExtResource( 2 )]
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
|
@ -4,5 +4,7 @@
|
|||
[ext_resource path="res://scenes/clothing/base/undiesBase.tscn" type="PackedScene" id=2]
|
||||
|
||||
|
||||
|
||||
|
||||
[node name="zBriefs" instance=ExtResource( 2 )]
|
||||
texture_normal = ExtResource( 1 )
|
|
@ -1,17 +1,19 @@
|
|||
[gd_scene load_steps=13 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/camera.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scenes/clothing/zBriefs.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://scenes/clothing/beatUpJeans.tscn" type="PackedScene" id=3]
|
||||
[ext_resource path="res://scenes/clothing/jeans.tscn" type="PackedScene" id=4]
|
||||
[ext_resource path="res://scenes/clothing/skirt.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://scenes/clothing/formalSkirt.tscn" type="PackedScene" id=6]
|
||||
[ext_resource path="res://scenes/clothing/camoJeans.tscn" type="PackedScene" id=7]
|
||||
[ext_resource path="res://scenes/clothing/djShorts.tscn" type="PackedScene" id=8]
|
||||
[ext_resource path="res://scenes/clothing/undies/zBriefs.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://scenes/clothing/pants/beatUpJeans.tscn" type="PackedScene" id=3]
|
||||
[ext_resource path="res://scenes/clothing/pants/jeans.tscn" type="PackedScene" id=4]
|
||||
[ext_resource path="res://scenes/clothing/pants/skirt.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://scenes/clothing/pants/formalSkirt.tscn" type="PackedScene" id=6]
|
||||
[ext_resource path="res://scenes/clothing/pants/camoJeans.tscn" type="PackedScene" id=7]
|
||||
[ext_resource path="res://scenes/clothing/pants/djShorts.tscn" type="PackedScene" id=8]
|
||||
[ext_resource path="res://sprites/ui/x_button.svg" type="Texture" id=9]
|
||||
[ext_resource path="res://scenes/clothing/briefs.tscn" type="PackedScene" id=20]
|
||||
[ext_resource path="res://scenes/clothing/undies/briefs.tscn" type="PackedScene" id=20]
|
||||
[ext_resource path="res://scripts/wardrobe.gd" type="Script" id=21]
|
||||
[ext_resource path="res://scenes/clothing/fundosi.tscn" type="PackedScene" id=22]
|
||||
[ext_resource path="res://scenes/clothing/undies/fundosi.tscn" type="PackedScene" id=22]
|
||||
|
||||
|
||||
|
||||
[node name="Wordrobe" type="TabContainer"]
|
||||
anchor_right = 1.0
|
||||
|
|
Loading…
Add table
Reference in a new issue