mirror of
https://github.com/tonytins/dressupzack
synced 2025-12-19 05:14:42 -05:00
Properly reference GameKit
- GameKit is now properly referenced using AutoLoad's root node instead of directly inheriting the Node because it redundent. I'm still learning. xD - Removed Global Menu - New icon, song, and font - Use the engine's lighting - Version - SVG Sixam wordmark
This commit is contained in:
parent
4b501e0c6e
commit
0d1cb030f7
43 changed files with 943 additions and 203 deletions
|
|
@ -1,28 +1,30 @@
|
|||
[gd_scene load_steps=8 format=2]
|
||||
|
||||
[ext_resource path="res://src/GameScn.gd" type="Script" id=1]
|
||||
[ext_resource path="res://sprites/icrazy_frame.png" type="Texture" id=2]
|
||||
[ext_resource path="res://scn/Clothes.tscn" type="PackedScene" id=3]
|
||||
[ext_resource path="res://src/Soundtrack.gd" type="Script" id=4]
|
||||
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://scn/GlobalMenu.tscn" type="PackedScene" id=6]
|
||||
[ext_resource path="res://sprites/icrazy_frame.svg" type="Texture" id=2]
|
||||
[ext_resource path="res://sprites/lights.png" type="Texture" id=3]
|
||||
[ext_resource path="res://scn/Clothes.tscn" type="PackedScene" id=4]
|
||||
[ext_resource path="res://src/Soundtrack.gd" type="Script" id=5]
|
||||
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=6]
|
||||
[ext_resource path="res://scn/Character.tscn" type="PackedScene" id=7]
|
||||
|
||||
[node name="GameScreen" type="Node"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="PicFrame" type="Sprite" parent="."]
|
||||
position = Vector2( 167.38, 140.341 )
|
||||
position = Vector2( 165.38, 245.341 )
|
||||
texture = ExtResource( 2 )
|
||||
|
||||
[node name="Clothes" parent="." instance=ExtResource( 3 )]
|
||||
[node name="Light" type="Light2D" parent="."]
|
||||
position = Vector2( 201.79, 232.073 )
|
||||
texture = ExtResource( 3 )
|
||||
|
||||
[node name="Clothes" parent="." instance=ExtResource( 4 )]
|
||||
|
||||
[node name="Music" type="AudioStreamPlayer" parent="."]
|
||||
script = ExtResource( 4 )
|
||||
script = ExtResource( 5 )
|
||||
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 5 )]
|
||||
|
||||
[node name="GlobalMenu" parent="." instance=ExtResource( 6 )]
|
||||
[node name="PauseScn" parent="." instance=ExtResource( 6 )]
|
||||
|
||||
[node name="Nathan" parent="." instance=ExtResource( 7 )]
|
||||
position = Vector2( 84.5004, 252.934 )
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue