mirror of
https://github.com/tonytins/dressupzack
synced 2025-06-26 08:34:43 -04: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,19 +1,21 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
[gd_scene load_steps=6 format=2]
|
||||
|
||||
[ext_resource path="res://scn/Character.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scn/GlobalMenu.tscn" type="PackedScene" id=2]
|
||||
[ext_resource path="res://src/CreditsScn.gd" type="Script" id=1]
|
||||
[ext_resource path="res://styles/DressUpTheme.res" type="Theme" id=2]
|
||||
[ext_resource path="res://scn/Character.tscn" type="PackedScene" id=3]
|
||||
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=4]
|
||||
[ext_resource path="res://src/Soundtrack.gd" type="Script" id=5]
|
||||
|
||||
[node name="Credits" type="Node"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Credits" type="RichTextLabel" parent="."]
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
anchor_bottom = 0.5
|
||||
margin_left = -173.0
|
||||
margin_top = -262.0
|
||||
margin_right = 146.0
|
||||
margin_bottom = 280.0
|
||||
margin_left = -159.0
|
||||
margin_right = 160.0
|
||||
margin_bottom = 586.0
|
||||
theme = ExtResource( 2 )
|
||||
bbcode_enabled = true
|
||||
bbcode_text = "[center]Created by
|
||||
Anthony Wilcox
|
||||
|
@ -21,15 +23,12 @@ Anthony Wilcox
|
|||
Music by
|
||||
Michael Carey
|
||||
|
||||
Fonts by
|
||||
Google
|
||||
|
||||
Clothing inspired by
|
||||
Megawolf77
|
||||
Canon Rhode
|
||||
Raier
|
||||
|
||||
[img]sprites/sixam_wordmark.png[/img]
|
||||
[img]sprites/sixam_wordmark.svg[/img]
|
||||
sixam.xyz
|
||||
[/center]"
|
||||
text = "Created by
|
||||
|
@ -38,9 +37,6 @@ Anthony Wilcox
|
|||
Music by
|
||||
Michael Carey
|
||||
|
||||
Fonts by
|
||||
Google
|
||||
|
||||
Clothing inspired by
|
||||
Megawolf77
|
||||
Canon Rhode
|
||||
|
@ -50,7 +46,17 @@ Raier
|
|||
sixam.xyz
|
||||
"
|
||||
|
||||
[node name="Character" parent="." instance=ExtResource( 1 )]
|
||||
position = Vector2( 48.4215, 256.845 )
|
||||
[node name="Character" parent="." instance=ExtResource( 3 )]
|
||||
position = Vector2( 68.8273, 256.845 )
|
||||
|
||||
[node name="GlobalMenu" parent="." instance=ExtResource( 2 )]
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 4 )]
|
||||
|
||||
[node name="Music" type="AudioStreamPlayer" parent="."]
|
||||
script = ExtResource( 5 )
|
||||
|
||||
[node name="Version" type="Label" parent="."]
|
||||
margin_left = 950.908
|
||||
margin_top = 568.64
|
||||
margin_right = 990.908
|
||||
margin_bottom = 582.64
|
||||
text = "Version"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue