diff --git a/README.md b/README.md index bc1615c..49bad33 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![](screenshot.gif) -​Tony's Dress Up is a re-imagining of my first Flash game, ZC's Dress Up, developed back in 2007. I've included the Flash copies in the ``/archive`` directory. They can be played at [Ruffle](https://ruffle.rs/)'s demo page. +​Tony's Dress Up is a re-imagining of my first Flash game, ZC's Dress Up, developed back in 2007. I've included the Flash copies in the ``/archive`` directory. They can be played using [Ruffle](https://ruffle.rs/)'s demo page. ​ ## Getting Started @@ -16,7 +16,7 @@ ## Authors -* **Anthony Wilcox** - *Initial work* - [tonytins](https://github.com/tonytins) +* **Tony Bark** - *Initial work* - [tonytins](https://github.com/tonytins) * **Kenney** - *UI assets* - [kenny.nl](https://www.kenney.nl/) * **Twemoji** - *Emojis* - [twemoji.twitter.com](https://twemoji.twitter.com/) ​ @@ -25,7 +25,7 @@ The source and assets are licensed under the MPL 2.0 License and CC-BY, respectfully - see the [LICENSE](LICENSE) and [ASSET-LICENSE](ASSET-LICENSE) for more details. -The Flash games included are closed source but abandonware too. Feel free to share them on archives. +The Flash games included are closed source, but considered abandonware. Feel free to share them on archives. ## Code of Conduct diff --git a/lang/local.en.translation b/lang/local.en.translation index 267283c..b5612eb 100644 Binary files a/lang/local.en.translation and b/lang/local.en.translation differ diff --git a/lang/local.sv.translation b/lang/local.sv.translation index 41ad3f7..7afef2f 100644 Binary files a/lang/local.sv.translation and b/lang/local.sv.translation differ diff --git a/scenes/game.tscn b/scenes/game.tscn index 7fb5062..71ea675 100644 --- a/scenes/game.tscn +++ b/scenes/game.tscn @@ -82,4 +82,5 @@ valign = 3 __meta__ = { "_edit_use_anchors_": false } + [connection signal="pressed" from="ui/base/clearBtn" to="ui/base" method="_on_clearBtn_pressed"] diff --git a/scripts/Character.gd b/scripts/Character.gd index d1e0315..7f1f8e0 100644 --- a/scripts/Character.gd +++ b/scripts/Character.gd @@ -1,3 +1,5 @@ +# This project is licensed under the MPL license. +# See the LICENSE file in the project root for more information. extends Resource var top = null diff --git a/scripts/character_base.gd b/scripts/character_base.gd index 11cd684..ea6e618 100644 --- a/scripts/character_base.gd +++ b/scripts/character_base.gd @@ -1,4 +1,4 @@ -# Anthony Wilcox licenses this file to you under the MPL license. +# This project is licensed under the MPL license. # See the LICENSE file in the project root for more information. extends Node2D diff --git a/scripts/clothing/accessory_base.gd b/scripts/clothing/accessory_base.gd index d2102c7..ff515fe 100644 --- a/scripts/clothing/accessory_base.gd +++ b/scripts/clothing/accessory_base.gd @@ -1,3 +1,5 @@ +# This project is licensed under the MPL license. +# See the LICENSE file in the project root for more information. extends "res://scripts/clothing/clothing_base.gd" func _on_accessory_pressed(): diff --git a/scripts/clothing/bottoms_base.gd b/scripts/clothing/bottoms_base.gd index db36aca..387654a 100644 --- a/scripts/clothing/bottoms_base.gd +++ b/scripts/clothing/bottoms_base.gd @@ -1,3 +1,5 @@ +# This project is licensed under the MPL license. +# See the LICENSE file in the project root for more information. extends "res://scripts/clothing/clothing_base.gd" func _on_bottoms_pressed(): diff --git a/scripts/clothing/clothing_base.gd b/scripts/clothing/clothing_base.gd index ff42989..f6c4272 100644 --- a/scripts/clothing/clothing_base.gd +++ b/scripts/clothing/clothing_base.gd @@ -1,3 +1,5 @@ +# This project is licensed under the MPL license. +# See the LICENSE file in the project root for more information. extends TextureButton onready var player = $select diff --git a/scripts/clothing/tops_base.gd b/scripts/clothing/tops_base.gd index 88bcff2..bae9b4f 100644 --- a/scripts/clothing/tops_base.gd +++ b/scripts/clothing/tops_base.gd @@ -1,3 +1,5 @@ +# This project is licensed under the MPL license. +# See the LICENSE file in the project root for more information. extends "res://scripts/clothing/clothing_base.gd" func _on_tops_pressed(): diff --git a/scripts/clothing/undies_base.gd b/scripts/clothing/undies_base.gd index 4f96176..2327ae3 100644 --- a/scripts/clothing/undies_base.gd +++ b/scripts/clothing/undies_base.gd @@ -1,3 +1,5 @@ +# This project is licensed under the MPL license. +# See the LICENSE file in the project root for more information. extends "res://scripts/clothing/clothing_base.gd" func _on_undies_pressed(): diff --git a/scripts/game_info.gd b/scripts/game_info.gd index 1eccaec..d9764f7 100644 --- a/scripts/game_info.gd +++ b/scripts/game_info.gd @@ -1,3 +1,5 @@ +# This project is licensed under the MPL license. +# See the LICENSE file in the project root for more information. extends Node diff --git a/scripts/ui.gd b/scripts/ui.gd index 5867720..987752a 100644 --- a/scripts/ui.gd +++ b/scripts/ui.gd @@ -1,3 +1,5 @@ +# This project is licensed under the MPL license. +# See the LICENSE file in the project root for more information. extends Control export var version: String = "1.0.0" diff --git a/scripts/wardrobe.gd b/scripts/wardrobe.gd index 831b06e..ebf78d8 100644 --- a/scripts/wardrobe.gd +++ b/scripts/wardrobe.gd @@ -1,3 +1,5 @@ +# This project is licensed under the MPL license. +# See the LICENSE file in the project root for more information. extends TabContainer onready var character = preload("res://resources/character.tres")