Skip to content

Commit

Permalink
Fixed typo in Customer.gd. Resources are now exported to /export dire…
Browse files Browse the repository at this point in the history
…ctory.
  • Loading branch information
Poobslag committed Mar 30, 2020
1 parent 6ef1781 commit be43cf0
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 6 deletions.
43 changes: 38 additions & 5 deletions export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ custom_features=""
export_filter="all_resources"
include_filter=""
exclude_filter=""
export_path="./Turbo Fat.exe"
export_path="export/Turbo Fat.exe"
patch_list=PoolStringArray( )
script_export_mode=1
script_encryption_key=""
Expand All @@ -33,10 +33,10 @@ codesign/digest_algorithm=1
codesign/description=""
codesign/custom_options=PoolStringArray( )
application/icon=""
application/file_version=""
application/product_version=""
application/file_version="0.0329"
application/product_version="0.0329"
application/company_name=""
application/product_name=""
application/product_name="Turbo Fat"
application/file_description=""
application/copyright=""
application/trademarks=""
Expand All @@ -50,7 +50,7 @@ custom_features=""
export_filter="all_resources"
include_filter=""
exclude_filter=""
export_path="./Turbo Fat.x86_64"
export_path="export/Turbo Fat.x86_64"
patch_list=PoolStringArray( )
script_export_mode=1
script_encryption_key=""
Expand All @@ -66,3 +66,36 @@ binary_format/64_bits=true
binary_format/embed_pck=false
custom_template/release=""
custom_template/debug=""

[preset.2]

name="Mac OSX"
platform="Mac OSX"
runnable=true
custom_features=""
export_filter="all_resources"
include_filter=""
exclude_filter=""
export_path="export/Turbo Fat.zip"
patch_list=PoolStringArray( )
script_export_mode=1
script_encryption_key=""

[preset.2.options]

custom_template/debug=""
custom_template/release=""
application/name=""
application/info="Made with Godot Engine"
application/icon=""
application/identifier=""
application/signature=""
application/short_version="0.0329"
application/version="0.0329"
application/copyright=""
display/high_res=false
privacy/camera_usage_description=""
privacy/microphone_usage_description=""
texture_format/s3tc=true
texture_format/etc=false
texture_format/etc2=false
2 changes: 1 addition & 1 deletion scenes/Restaurant/Customer.gd
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Plays a door chime sound effect, for when a customer enters the restaurant.
Parameter: 'delay' is the delay in seconds before the chime sound plays. The default value of '-1' results in a random
delay.
"""
(delay: float = -1):
func play_door_chime(delay: float = -1):
if delay < 0:
delay = CHIME_DELAYS[randi() % CHIME_DELAYS.size()]
yield(get_tree().create_timer(delay), "timeout")
Expand Down

0 comments on commit be43cf0

Please sign in to comment.