1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-06-25 08:04:43 -04:00

Added sound effects from Kenny

- Added sound effects from Kenny for when varies buttons are pressed so it's no longer a totally silent game
- Swapped old fonts for Kenny's fonts
- Renamed music directory to sounds and removed old imports
- Removed docs page
This commit is contained in:
Anthony Foxclaw 2020-06-28 13:26:28 -04:00
parent 91dd8349c6
commit 8e31326609
41 changed files with 63 additions and 1010 deletions

View file

@ -1,6 +1,5 @@
extends "res://scripts/clothing/baseClothing.gd"
onready var character = preload("res://resources/character.tres")
func _on_accessory_pressed():
character.accessory = texture_normal
$select.play()

View file

@ -1,2 +1,4 @@
extends TextureButton
onready var player = $select
onready var character = preload("res://resources/character.tres")

View file

@ -1,6 +1,5 @@
extends "res://scripts/clothing/baseClothing.gd"
onready var character = preload("res://resources/character.tres")
func _on_bottoms_pressed():
character.bottom = texture_normal
$select.play()

View file

@ -1,6 +1,5 @@
extends "res://scripts/clothing/baseClothing.gd"
onready var character = preload("res://resources/character.tres")
func _on_tops_pressed():
character.top = texture_normal
$select.play()

View file

@ -1,6 +1,5 @@
extends "res://scripts/clothing/baseClothing.gd"
onready var character = preload("res://resources/character.tres")
func _on_undies_pressed():
character.underwear = texture_normal
$select.play()

View file

@ -1,3 +1,4 @@
tool
extends Control
onready var character = preload("res://resources/character.tres")
@ -5,6 +6,7 @@ onready var blank_top = preload("res://sprites/clothes/blank_top.png")
onready var blank_bottom = preload("res://sprites/clothes/blank_bottom.png")
func _on_clearBtn_pressed():
$clear.play()
character.accessory = blank_top
character.bottom = blank_bottom
character.top = blank_top