mirror of
https://github.com/tonytins/dressupzack
synced 2025-06-25 16:14:43 -04:00
Renamed placeholders
- Renamed "[name]_placeholder" sprites to "bank_[name]" - Remove pants and shirt functions - Created bases for bottoms and tops - Brought back most, if not all, pants and skirts
This commit is contained in:
parent
d3b5f1fc1c
commit
c761b47f11
24 changed files with 164 additions and 128 deletions
|
@ -1,8 +1,8 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scripts/clothing/accessoryBase.gd" type="Script" id=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]
|
||||
|
||||
[node name="accessoryBase" instance=ExtResource( 1 )]
|
||||
script = ExtResource( 2 )
|
||||
[node name="accessoryBase" instance=ExtResource( 2 )]
|
||||
script = ExtResource( 1 )
|
||||
[connection signal="pressed" from="." to="." method="_on_accessory_pressed"]
|
8
scenes/clothing/base/bottomsBase.tscn
Normal file
8
scenes/clothing/base/bottomsBase.tscn
Normal file
|
@ -0,0 +1,8 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/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"]
|
8
scenes/clothing/base/topsBase.tscn
Normal file
8
scenes/clothing/base/topsBase.tscn
Normal file
|
@ -0,0 +1,8 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/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,8 +1,8 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/baseClothing.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scripts/clothing/undiesBase.gd" type="Script" id=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]
|
||||
|
||||
[node name="baseClothing" instance=ExtResource( 1 )]
|
||||
script = ExtResource( 2 )
|
||||
[node name="baseClothing" instance=ExtResource( 2 )]
|
||||
script = ExtResource( 1 )
|
||||
[connection signal="pressed" from="." to="." method="_on_undies_pressed"]
|
10
scenes/clothing/beatUpJeans.tscn
Normal file
10
scenes/clothing/beatUpJeans.tscn
Normal file
|
@ -0,0 +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://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"]
|
|
@ -1,7 +1,8 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://sprites/clothes/briefs.svg" type="Texture" id=1]
|
||||
[ext_resource path="res://scenes/clothing/undiesBase.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://scenes/clothing/base/undiesBase.tscn" type="PackedScene" id=2]
|
||||
|
||||
|
||||
[node name="briefs" instance=ExtResource( 2 )]
|
||||
texture_normal = ExtResource( 1 )
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/clothing/accessoryBase.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scenes/clothing/base/accessoryBase.tscn" type="PackedScene" id=1]
|
||||
[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
|
||||
|
|
10
scenes/clothing/camoJeans.tscn
Normal file
10
scenes/clothing/camoJeans.tscn
Normal file
|
@ -0,0 +1,10 @@
|
|||
[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://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"]
|
10
scenes/clothing/djShorts.tscn
Normal file
10
scenes/clothing/djShorts.tscn
Normal file
|
@ -0,0 +1,10 @@
|
|||
[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://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"]
|
10
scenes/clothing/formalSkirt.tscn
Normal file
10
scenes/clothing/formalSkirt.tscn
Normal file
|
@ -0,0 +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://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"]
|
|
@ -1,7 +1,8 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://sprites/clothes/fundosi.svg" type="Texture" id=1]
|
||||
[ext_resource path="res://scenes/clothing/undiesBase.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://scenes/clothing/base/undiesBase.tscn" type="PackedScene" id=2]
|
||||
|
||||
|
||||
[node name="fundosi" instance=ExtResource( 2 )]
|
||||
anchor_right = 0.0
|
||||
|
|
10
scenes/clothing/jeans.tscn
Normal file
10
scenes/clothing/jeans.tscn
Normal file
|
@ -0,0 +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://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"]
|
10
scenes/clothing/skirt.tscn
Normal file
10
scenes/clothing/skirt.tscn
Normal file
|
@ -0,0 +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://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"]
|
|
@ -1,7 +1,8 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
|
||||
[ext_resource path="res://sprites/clothes/z_briefs.svg" type="Texture" id=1]
|
||||
[ext_resource path="res://scenes/clothing/undiesBase.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://scenes/clothing/base/undiesBase.tscn" type="PackedScene" id=2]
|
||||
|
||||
|
||||
[node name="zBriefs" instance=ExtResource( 2 )]
|
||||
texture_normal = ExtResource( 1 )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue