Remove exit button on web platform
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
637bb0a376
commit
02a8c38300
2 changed files with 8 additions and 5 deletions
|
@ -26,8 +26,8 @@ architectures/armeabi-v7a=true
|
|||
architectures/arm64-v8a=true
|
||||
architectures/x86=false
|
||||
architectures/x86_64=false
|
||||
version/code=2
|
||||
version/name="0.3.1"
|
||||
version/code=3
|
||||
version/name="0.3.2"
|
||||
package/unique_name="dev.moepoi.frontierofhell"
|
||||
package/name="Frontier of Hell"
|
||||
package/signed=true
|
||||
|
@ -237,8 +237,8 @@ application/modify_resources=true
|
|||
application/icon="res://assets/icons/app-logo.png"
|
||||
application/console_wrapper_icon=""
|
||||
application/icon_interpolation=4
|
||||
application/file_version="0.0.3.1"
|
||||
application/product_version="0.0.3.1"
|
||||
application/file_version="0.0.3.2"
|
||||
application/product_version="0.0.3.2"
|
||||
application/company_name="Moepoi"
|
||||
application/product_name="Frontier of Hell"
|
||||
application/file_description="~"
|
||||
|
@ -272,7 +272,7 @@ custom_features=""
|
|||
export_filter="all_resources"
|
||||
include_filter=""
|
||||
exclude_filter=""
|
||||
export_path="build/web/Frontier-of-Hell.html"
|
||||
export_path="build/web/index.html"
|
||||
encryption_include_filters=""
|
||||
encryption_exclude_filters=""
|
||||
encrypt_pck=false
|
||||
|
|
|
@ -18,6 +18,9 @@ func _ready():
|
|||
"unlocked_stage": 1
|
||||
})
|
||||
|
||||
if OS.get_name() == "Web":
|
||||
$TextureRect/Panel/MarginContainer/VBoxContainer/HBoxContainer/Exit.hide()
|
||||
|
||||
func _on_logo_pressed():
|
||||
if timer.is_stopped():
|
||||
timer.start()
|
||||
|
|
Loading…
Reference in a new issue