mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-05 13:34:48 -04:00
Updated license headers
This commit is contained in:
parent
9855af0180
commit
c846932fc8
14 changed files with 23 additions and 4 deletions
|
@ -5,7 +5,7 @@
|
|||
|
||||

|
||||
|
||||
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
|
||||
|
||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -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"]
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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():
|
||||
|
|
|
@ -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():
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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():
|
||||
|
|
|
@ -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():
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Add table
Reference in a new issue