We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Transcendent variables are compile-time variables used to hold transcendent values
#define include_fps_monitor false
Transcendent variables can be created in any of the following ways:
#define
#define product_name "Cool New Product"
#default
undef
#default start_fullscreen true
#set
#set max_customers max_child_customers + max_adult_customers
See meta directives for more information
Transcendent variables can be changed by using the #set meta directive
#set name "Isaac" #print "Hi " + name #set name "Andy" #print "Hello " + name
Hi Isaac Hello Andy
Transcendent variables can be accessed by using their name inside of a meta expression
#print "Building with assets path: " + assets_path
Table of Contents