Namespace: gui
Language: Lua
Type: Defold Lua
File: gui_ddf.proto
Source: engine/gamesys/proto/gamesys/gui_ddf.proto
GUI API documentation
Type: FUNCTION This is a callback-function, which is called by the engine when a gui component is finalized (destroyed). It can be used to e.g. take some last action, report the finalization to other game object instances or release user input focus (see release_input_focus). There is no use in starting any animations or similar from this function since the gui component is about to be destroyed.
Parameters
self (userdata) - reference to the script state to be used for storing dataExamples
function final(self)
-- report finalization
msg.post("my_friend_instance", "im_dead", {my_stats = self.some_value})
end
Type: PROPERTY The fonts used in the gui. The type of the property is hash. Key must be specified in options table.
Examples
How to set font using a script property (see resource.font)
go.property("title_latin", resource.font("/open_sans.font"))
go.property("title_cyrillic", resource.font("/open_sans_cyrillic.font"))
function init(self)
go.set("#gui", "fonts", self.title_cyrillic, {key = "title"})
end
Type: CONSTANT Adjust mode is used when the screen resolution differs from the project settings. The fit mode ensures that the entire node is visible in the adjusted gui scene.
Type: CONSTANT Adjust mode is used when the screen resolution differs from the project settings. The stretch mode ensures that the node is displayed as is in the adjusted gui scene, which might scale it non-uniformally.
Type: CONSTANT Adjust mode is used when the screen resolution differs from the project settings. The zoom mode ensures that the node fills its entire area and might make the node exceed it.
Type: CONSTANT bottom y-anchor
Type: CONSTANT left x-anchor
Type: CONSTANT no anchor
Type: CONSTANT right x-anchor
Type: CONSTANT top y-anchor
Type: FUNCTION This starts an animation of a node property according to the specified parameters. If the node property is already being animated, that animation will be canceled and replaced by the new one. Note however that several different node properties can be animated simultaneously. Use gui.cancel_animations to stop the animation before it has completed. Composite properties of type vector3, vector4 or quaternion also expose their sub-components (x, y, z and w). You can address the components individually by suffixing the name with a dot ‘.’ and the name of the component. For instance, “position.x” (the position x coordinate) or “color.w” (the color alpha value). If a complete_function (Lua function) is specified, that function will be called when the animation has completed. By starting a new animation in that function, several animations can be sequenced together. See the examples below for more information.
Parameters
node (node) - node to animateproperty (string |
constant) - property to animate |
"position""rotation""euler""scale""color""outline""shadow""size""fill_angle" (pie)"inner_radius" (pie)"leading" (text)"tracking" (text)"slice9" (slice9)The following property constants are defined equaling the corresponding property string names.
gui.PROP_POSITIONgui.PROP_ROTATIONgui.PROP_EULERgui.PROP_SCALEgui.PROP_COLORgui.PROP_OUTLINEgui.PROP_SHADOWgui.PROP_SIZEgui.PROP_FILL_ANGLEgui.PROP_INNER_RADIUSgui.PROP_LEADINGgui.PROP_TRACKINGgui.PROP_SLICE9to (number |
vector3 | vector4 | quaternion) - target property value |
easing (constant | vector) - easing to use during animation.
Either specify one of the gui.EASING_* constants or provide a
vector with a custom curve. See the animation guide for more information.duration (number) - duration of the animation in seconds.delay (number) (optional) - delay before the animation starts in seconds.complete_function (function(self, node)) (optional) - function to call when the
animation has completedplayback (constant) (optional) - playback modegui.PLAYBACK_ONCE_FORWARDgui.PLAYBACK_ONCE_BACKWARDgui.PLAYBACK_ONCE_PINGPONGgui.PLAYBACK_LOOP_FORWARDgui.PLAYBACK_LOOP_BACKWARDgui.PLAYBACK_LOOP_PINGPONGExamples
How to start a simple color animation, where the node fades in to white during 0.5 seconds:
gui.set_color(node, vmath.vector4(0, 0, 0, 0)) -- node is fully transparent
gui.animate(node, gui.PROP_COLOR, vmath.vector4(1, 1, 1, 1), gui.EASING_INOUTQUAD, 0.5) -- start animation
How to start a sequenced animation where the node fades in to white during 0.5 seconds, stays visible for 2 seconds and then fades out:
local function on_animation_done(self, node)
-- fade out node, but wait 2 seconds before the animation starts
gui.animate(node, gui.PROP_COLOR, vmath.vector4(0, 0, 0, 0), gui.EASING_OUTQUAD, 0.5, 2.0)
end
function init(self)
-- fetch the node we want to animate
local my_node = gui.get_node("my_node")
-- node is initially set to fully transparent
gui.set_color(my_node, vmath.vector4(0, 0, 0, 0))
-- animate the node immediately and call on_animation_done when the animation has completed
gui.animate(my_node, gui.PROP_COLOR, vmath.vector4(1, 1, 1, 1), gui.EASING_INOUTQUAD, 0.5, 0.0, on_animation_done)
end
How to animate a node’s y position using a crazy custom easing curve:
function init(self)
local values = { 0, 0, 0, 0, 0, 0, 0, 0,
1, 1, 1, 1, 1, 1, 1, 1,
0, 0, 0, 0, 0, 0, 0, 0,
1, 1, 1, 1, 1, 1, 1, 1,
0, 0, 0, 0, 0, 0, 0, 0,
1, 1, 1, 1, 1, 1, 1, 1,
0, 0, 0, 0, 0, 0, 0, 0,
1, 1, 1, 1, 1, 1, 1, 1 }
local vec = vmath.vector(values)
local node = gui.get_node("box")
gui.animate(node, "position.y", 100, vec, 4.0, 0, nil, gui.PLAYBACK_LOOP_PINGPONG)
end
Type: CONSTANT additive blending
Type: CONSTANT additive alpha blending
Type: CONSTANT alpha blending
Type: CONSTANT multiply blending
Type: CONSTANT screen blending
Type: FUNCTION If one or more animations of the specified node is currently running (started by gui.animate), they will immediately be canceled.
Parameters
node (node) - node that should have its animation canceledproperty (nil |
string | constant) (optional) - optional property for which the animation should be canceled |
"position""rotation""euler""scale""color""outline""shadow""size""fill_angle" (pie)"inner_radius" (pie)"leading" (text)"tracking" (text)"slice9" (slice9)Examples
Start an animation of the position property of a node, then cancel parts of the animation:
local node = gui.get_node("my_node")
-- animate to new position
local pos = vmath.vector3(100, 100, 0)
gui.animate(node, "position", pos, go.EASING_LINEAR, 2)
...
-- cancel animation of the x component.
gui.cancel_animations(node, "position.x")
Cancels all property animations on a node in a single call:
local node = gui.get_node("my_node")
-- animate to new position and scale
gui.animate(node, "position", vmath.vector3(100, 100, 0), go.EASING_LINEAR, 5)
gui.animate(node, "scale", vmath.vector3(0.5), go.EASING_LINEAR, 5)
...
-- cancel positioning and scaling at once
gui.cancel_animations(node)
Type: FUNCTION Cancels any running flipbook animation on the specified node.
Parameters
node (node) - node cancel flipbook animation forExamples
local node = gui.get_node("anim_node")
gui.cancel_flipbook(node)
Type: CONSTANT clipping mode none
Type: CONSTANT clipping mode stencil
Type: FUNCTION Make a clone instance of a node. The cloned node will be identical to the original node, except the id which is generated as the string “node” plus a sequential unsigned integer value. This function does not clone the supplied node’s children nodes. Use gui.clone_tree for that purpose.
Parameters
node (node) - node to cloneReturns
clone (node) - the cloned nodeType: FUNCTION Make a clone instance of a node and all its children. Use gui.clone to clone a node excluding its children.
Parameters
node (node) - root node to cloneReturns
clones (table) - a table mapping node ids to the corresponding cloned nodesType: FUNCTION Deletes the specified node. Any child nodes of the specified node will be recursively deleted.
Parameters
node (node) - node to deleteExamples
Delete a particular node and any child nodes it might have:
local node = gui.get_node("my_node")
gui.delete_node(node)
Type: FUNCTION Delete a dynamically created texture.
Parameters
texture (string |
hash) - texture id |
Examples
function init(self)
-- Create a texture.
if gui.new_texture("temp_tx", 10, 10, "rgb", string.rep('\0', 10 * 10 * 3)) then
-- Do something with the texture.
...
-- Delete the texture
gui.delete_texture("temp_tx")
end
end
Type: CONSTANT in-back
Type: CONSTANT in-bounce
Type: CONSTANT in-circlic
Type: CONSTANT in-cubic
Type: CONSTANT in-elastic
Type: CONSTANT in-exponential
Type: CONSTANT in-out-back
Type: CONSTANT in-out-bounce
Type: CONSTANT in-out-circlic
Type: CONSTANT in-out-cubic
Type: CONSTANT in-out-elastic
Type: CONSTANT in-out-exponential
Type: CONSTANT in-out-quadratic
Type: CONSTANT in-out-quartic
Type: CONSTANT in-out-quintic
Type: CONSTANT in-out-sine
Type: CONSTANT in-quadratic
Type: CONSTANT in-quartic
Type: CONSTANT in-quintic
Type: CONSTANT in-sine
Type: CONSTANT linear interpolation
Type: CONSTANT out-back
Type: CONSTANT out-bounce
Type: CONSTANT out-circlic
Type: CONSTANT out-cubic
Type: CONSTANT out-elastic
Type: CONSTANT out-exponential
Type: CONSTANT out-in-back
Type: CONSTANT out-in-bounce
Type: CONSTANT out-in-circlic
Type: CONSTANT out-in-cubic
Type: CONSTANT out-in-elastic
Type: CONSTANT out-in-exponential
Type: CONSTANT out-in-quadratic
Type: CONSTANT out-in-quartic
Type: CONSTANT out-in-quintic
Type: CONSTANT out-in-sine
Type: CONSTANT out-quadratic
Type: CONSTANT out-quartic
Type: CONSTANT out-quintic
Type: CONSTANT out-sine
Type: FUNCTION Instead of using specific getters such as gui.get_position or gui.get_scale, you can use gui.get instead and supply the property as a string or a hash. While this function is similar to go.get, there are a few more restrictions when operating in the gui namespace. Most notably, only these explicitly named properties are supported:
“position” “rotation” “euler” “scale” “color” “outline” “shadow” “size” “fill_angle” (pie) “inner_radius” (pie) “leading” (text) “tracking” (text) “slice9” (slice9)
The value returned will either be a vmath.vector4 or a single number, i.e getting the “position” property will return a vec4 while getting the “position.x” property will return a single value. You can also use this function to get material constants.
Parameters
node (node) - node to get the property forproperty (string |
hash | constant) - the property to retrieve |
options (table) (optional) - optional options table (only applicable for material constants)index number index into array property (1 based)Examples
Get properties on existing nodes:
local node = gui.get_node("my_box_node")
local node_position = gui.get(node, "position")
Type: FUNCTION Returns the adjust mode of a node. The adjust mode defines how the node will adjust itself to screen resolutions that differs from the one in the project settings.
Parameters
node (node) - node from which to get the adjust mode (node)Returns
adjust_mode (constant) - the current adjust modegui.ADJUST_FITgui.ADJUST_ZOOMgui.ADJUST_STRETCHType: FUNCTION gets the node alpha
Parameters
node (node) - node from which to get alphaReturns
alpha (number) - alphaType: FUNCTION Returns the blend mode of a node. Blend mode defines how the node will be blended with the background.
Parameters
node (node) - node from which to get the blend modeReturns
blend_mode (constant) - blend modegui.BLEND_ALPHAgui.BLEND_ADDgui.BLEND_ADD_ALPHAgui.BLEND_MULTgui.BLEND_SCREENType: FUNCTION If node is set as an inverted clipping node, it will clip anything inside as opposed to outside.
Parameters
node (node) - node from which to get the clipping inverted stateReturns
inverted (boolean) - true or falseType: FUNCTION Clipping mode defines how the node will clip it’s children nodes
Parameters
node (node) - node from which to get the clipping modeReturns
clipping_mode (constant) - clipping modegui.CLIPPING_MODE_NONEgui.CLIPPING_MODE_STENCILType: FUNCTION If node is set as visible clipping node, it will be shown as well as clipping. Otherwise, it will only clip but not show visually.
Parameters
node (node) - node from which to get the clipping visibility stateReturns
visible (boolean) - true or falseType: FUNCTION Returns the color of the supplied node. The components of the returned vector4 contains the color channel values:
Component Color value
x Red value
y Green value
z Blue value
w Alpha value
Parameters
node (node) - node to get the color fromReturns
color (vector4) - node colorType: FUNCTION Returns the rotation of the supplied node. The rotation is expressed in degree Euler angles.
Parameters
node (node) - node to get the rotation fromReturns
rotation (vector3) - node rotationType: FUNCTION Returns the sector angle of a pie node.
Parameters
node (node) - node from which to get the fill angleReturns
angle (number) - sector angleType: FUNCTION Get node flipbook animation.
Parameters
node (node) - node to get flipbook animation fromReturns
animation (hash) - animation idType: FUNCTION This is only useful nodes with flipbook animations. Gets the normalized cursor of the flipbook animation on a node.
Parameters
node (node) - node to get the cursor for (node)Returns
cursor (number) - cursor valueType: FUNCTION This is only useful nodes with flipbook animations. Gets the playback rate of the flipbook animation on a node.
Parameters
node (node) - node to set the cursor forReturns
rate (number) - playback rateType: FUNCTION This is only useful for text nodes. The font must be mapped to the gui scene in the gui editor.
Parameters
node (node) - node from which to get the fontReturns
font (hash) - font idType: FUNCTION This is only useful for text nodes. The font must be mapped to the gui scene in the gui editor.
Parameters
font_name (hash |
string) - font of which to get the path hash |
Returns
hash (hash) - path hash to resourceExamples
Get the text metrics for a text
function init(self)
local node = gui.get_node("name")
local font_name = gui.get_font(node)
local font = gui.get_font_resource(font_name)
local metrics = resource.get_text_metrics(font, "The quick brown fox\n jumps over the lazy dog")
end
Type: FUNCTION Returns the scene height.
Returns
height (number) - scene heightType: FUNCTION Retrieves the id of the specified node.
Parameters
node (node) - the node to retrieve the id fromReturns
id (hash) - the id of the nodeExamples
Gets the id of a node:
local node = gui.get_node("my_node")
local id = gui.get_id(node)
print(id) --> hash: [my_node]
Type: FUNCTION Retrieve the index of the specified node among its siblings. The index defines the order in which a node appear in a GUI scene. Higher index means the node is drawn on top of lower indexed nodes.
Parameters
node (node) - the node to retrieve the id fromReturns
index (number) - the index of the nodeExamples
Compare the index order of two sibling nodes:
local node1 = gui.get_node("my_node_1")
local node2 = gui.get_node("my_node_2")
if gui.get_index(node1) < gui.get_index(node2) then
-- node1 is drawn below node2
else
-- node2 is drawn below node1
end
Type: FUNCTION gets the node inherit alpha state
Parameters
node (node) - node from which to get the inherit alpha stateReturns
inherit_alpha (boolean) - true or falseType: FUNCTION Returns the inner radius of a pie node. The radius is defined along the x-axis.
Parameters
node (node) - node from where to get the inner radiusReturns
radius (number) - inner radiusType: FUNCTION The layer must be mapped to the gui scene in the gui editor.
Parameters
node (node) - node from which to get the layerReturns
layer (hash) - layer idType: FUNCTION gets the scene current layout
Returns
layout (hash) - layout idType: FUNCTION Returns a table mapping each layout id hash to a vector3(width, height, 0). For the default layout, the current scene resolution is returned. If a layout name is not present in the Display Profiles (or when no display profiles are assigned), the width/height pair is 0.
Returns
return (table) - layout_id_hash -> vmath.vector3(width, height, 0)Type: FUNCTION Returns the leading value for a text node.
Parameters
node (node) - node from where to get the leadingReturns
leading (number) - leading scaling value (default=1)Type: FUNCTION Returns whether a text node is in line-break mode or not. This is only useful for text nodes.
Parameters
node (node) - node from which to get the line-break forReturns
line_break (boolean) - true or falseType: FUNCTION Returns the material of a node. The material must be mapped to the gui scene in the gui editor.
Parameters
node (node) - node to get the material forReturns
materal (hash) - material idExamples
Getting the material for a node, and assign it to another node:
local node1 = gui.get_node("my_node")
local node2 = gui.get_node("other_node")
local node1_material = gui.get_material(node1)
gui.set_material(node2, node1_material)
Type: FUNCTION Retrieves the node with the specified id.
Parameters
id (string |
hash) - id of the node to retrieve |
Returns
instance (node) - a new node instanceExamples
Gets a node by id and change its color:
local node = gui.get_node("my_node")
local red = vmath.vector4(1.0, 0.0, 0.0, 1.0)
gui.set_color(node, red)
Type: FUNCTION Returns the outer bounds mode for a pie node.
Parameters
node (node) - node from where to get the outer bounds modeReturns
bounds_mode (constant) - the outer bounds mode of the pie node:gui.PIEBOUNDS_RECTANGLEgui.PIEBOUNDS_ELLIPSEType: FUNCTION Returns the outline color of the supplied node. See gui.get_color for info how vectors encode color values.
Parameters
node (node) - node to get the outline color fromReturns
color (vector4) - outline colorType: FUNCTION Returns the parent node of the specified node. If the supplied node does not have a parent, nil is returned.
Parameters
node (node) - the node from which to retrieve its parentReturns
parent (node |
nil) - parent instance or nil |
Type: FUNCTION Get the paricle fx for a gui node
Parameters
node (node) - node to get particle fx forReturns
particlefx (hash) - particle fx idType: FUNCTION Returns the number of generated vertices around the perimeter of a pie node.
Parameters
node (node) - pie nodeReturns
vertices (number) - vertex countType: FUNCTION The pivot specifies how the node is drawn and rotated from its position.
Parameters
node (node) - node to get pivot fromReturns
pivot (constant) - pivot constantgui.PIVOT_CENTERgui.PIVOT_Ngui.PIVOT_NEgui.PIVOT_Egui.PIVOT_SEgui.PIVOT_Sgui.PIVOT_SWgui.PIVOT_Wgui.PIVOT_NWType: FUNCTION Returns the position of the supplied node.
Parameters
node (node) - node to get the position fromReturns
position (vector3) - node positionType: FUNCTION Returns the rotation of the supplied node. The rotation is expressed as a quaternion
Parameters
node (node) - node to get the rotation fromReturns
rotation (quaternion) - node rotationType: FUNCTION Returns the scale of the supplied node.
Parameters
node (node) - node to get the scale fromReturns
scale (vector3) - node scaleType: FUNCTION Returns the screen position of the supplied node. This function returns the calculated transformed position of the node, taking into account any parent node transforms.
Parameters
node (node) - node to get the screen position fromReturns
position (vector3) - node screen positionType: FUNCTION Returns the shadow color of the supplied node. See gui.get_color for info how vectors encode color values.
Parameters
node (node) - node to get the shadow color fromReturns
color (vector4) - node shadow colorType: FUNCTION Returns the size of the supplied node.
Parameters
node (node) - node to get the size fromReturns
size (vector3) - node sizeType: FUNCTION Returns the size of a node. The size mode defines how the node will adjust itself in size. Automatic size mode alters the node size based on the node’s content. Automatic size mode works for Box nodes and Pie nodes which will both adjust their size to match the assigned image. Particle fx and Text nodes will ignore any size mode setting.
Parameters
node (node) - node from which to get the size mode (node)Returns
size_mode (constant) - the current size modegui.SIZE_MODE_MANUALgui.SIZE_MODE_AUTOType: FUNCTION Returns the slice9 configuration values for the node.
Parameters
node (node) - node to manipulateReturns
values (vector4) - configuration valuesType: FUNCTION Returns the text value of a text node. This is only useful for text nodes.
Parameters
node (node) - node from which to get the textReturns
text (string) - text valueType: FUNCTION Returns the texture of a node. This is currently only useful for box or pie nodes. The texture must be mapped to the gui scene in the gui editor.
Parameters
node (node) - node to get texture fromReturns
texture (hash) - texture idType: FUNCTION Returns the tracking value of a text node.
Parameters
node (node) - node from where to get the trackingReturns
tracking (number) - tracking scaling number (default=0)Type: FUNCTION Get a node and all its children as a Lua table.
Parameters
node (node) - root node to get node tree fromReturns
clones (table) - a table mapping node ids to the corresponding nodesType: FUNCTION gets the node type
Parameters
node (node) - node from which to get the typeReturns
type (constant) - typegui.TYPE_BOXgui.TYPE_TEXTgui.TYPE_PIEgui.TYPE_PARTICLEFXgui.TYPE_CUSTOMsubtype (number |
nil) - id of the custom type |
Type: FUNCTION Returns true if a node is visible and false if it’s not. Invisible nodes are not rendered.
Parameters
node (node) - node to queryReturns
visible (boolean) - whether the node is visible or notType: FUNCTION Returns the scene width.
Returns
width (number) - scene widthType: FUNCTION The x-anchor specifies how the node is moved when the game is run in a different resolution.
Parameters
node (node) - node to get x-anchor fromReturns
anchor (constant) - anchor constantgui.ANCHOR_NONEgui.ANCHOR_LEFTgui.ANCHOR_RIGHTType: FUNCTION The y-anchor specifies how the node is moved when the game is run in a different resolution.
Parameters
node (node) - node to get y-anchor fromReturns
anchor (constant) - anchor constantgui.ANCHOR_NONEgui.ANCHOR_TOPgui.ANCHOR_BOTTOMType: FUNCTION Hides the on-display touch keyboard on the device.
Type: FUNCTION Returns true if a node is enabled and false if it’s not. Disabled nodes are not rendered and animations acting on them are not evaluated.
Parameters
node (node) - node to queryrecursive (boolean) (optional) - check hierarchy recursivelyReturns
enabled (boolean) - whether the node is enabled or notType: CONSTANT default keyboard
Type: CONSTANT email keyboard
Type: CONSTANT number input keyboard
Type: CONSTANT password keyboard
Type: FUNCTION Alters the ordering of the two supplied nodes by moving the first node above the second. If the second argument is nil the first node is moved to the top.
Parameters
node (node) - to movereference (node |
nil) - reference node above which the first node should be moved |
Type: FUNCTION Alters the ordering of the two supplied nodes by moving the first node below the second. If the second argument is nil the first node is moved to the bottom.
Parameters
node (node) - to movereference (node |
nil) - reference node below which the first node should be moved |
Type: FUNCTION Dynamically create a new box node.
Parameters
pos (vector3 |
vector4) - node position |
size (vector3) - node sizeReturns
node (node) - new box nodeType: FUNCTION Dynamically create a particle fx node.
Parameters
pos (vector3 |
vector4) - node position |
particlefx (hash |
string) - particle fx resource name |
Returns
node (node) - new particle fx nodeType: FUNCTION Dynamically create a new pie node.
Parameters
pos (vector3 |
vector4) - node position |
size (vector3) - node sizeReturns
node (node) - new pie nodeType: FUNCTION Dynamically create a new text node.
Parameters
pos (vector3 |
vector4) - node position |
text (string) - node textReturns
node (node) - new text nodeType: FUNCTION Dynamically create a new texture.
Parameters
texture_id (string |
hash) - texture id |
width (number) - texture widthheight (number) - texture heighttype (string |
constant) - texture type |
"rgb" - RGB"rgba" - RGBA"l" - LUMINANCE"astc" - ASTC compressed formatbuffer (string) - texture dataflip (boolean) - flip texture verticallyReturns
success (boolean) - texture creation was successfulcode (number) - one of the gui.RESULT_* codes if unsuccessfulExamples
How to create a texture and apply it to a new box node:
function init(self)
local w = 200
local h = 300
-- A nice orange. String with the RGB values.
local orange = string.char(0xff) .. string.char(0x80) .. string.char(0x10)
-- Create the texture. Repeat the color string for each pixel.
local ok, reason = gui.new_texture("orange_tx", w, h, "rgb", string.rep(orange, w * h))
if ok then
-- Create a box node and apply the texture to it.
local n = gui.new_box_node(vmath.vector3(200, 200, 0), vmath.vector3(w, h, 0))
gui.set_texture(n, "orange_tx")
else
-- Could not create texture for some reason...
if reason == gui.RESULT_TEXTURE_ALREADY_EXISTS then
...
else
...
end
end
end
```How to create a texture using .astc format
```lua
local path = "/assets/images/logo_4x4.astc"
local buffer = sys.load_resource(path)
local n = gui.new_box_node(pos, vmath.vector3(size, size, 0))
-- size is read from the .astc buffer
-- flip is not supported
gui.new_texture(path, 0, 0, "astc", buffer, false)
gui.set_texture(n, path)
Type: FUNCTION Tests whether a coordinate is within the bounding box of a node.
Parameters
node (node) - node to be tested for pickingx (number) - x-coordinate (see on_input )y (number) - y-coordinate (see on_input )Returns
pickable (boolean) - pick resultType: CONSTANT elliptical pie node bounds
Type: CONSTANT rectangular pie node bounds
Type: CONSTANT center pivot
Type: CONSTANT east pivot
Type: CONSTANT north pivot
Type: CONSTANT north-east pivot
Type: CONSTANT north-west pivot
Type: CONSTANT south pivot
Type: CONSTANT south-east pivot
Type: CONSTANT south-west pivot
Type: CONSTANT west pivot
Type: FUNCTION Play flipbook animation on a box or pie node. The current node texture must contain the animation. Use this function to set one-frame still images on the node.
Parameters
node (node) - node to set animation foranimation (string |
hash) - animation id |
complete_function (function(self, node)) (optional) - optional function to call when the animation has completedselfobject The current object.
nodenode The node that is animated.
play_properties (table) (optional) - optional table with propertiesoffsetnumber The normalized initial value of the animation cursor when the animation starts playing</dd>
playback_ratenumber The rate with which the animation will be played. Must be positive</dd> </dl>
Examples
Set the texture of a node to a flipbook animation from an atlas:
local function anim_callback(self, node)
-- Take action after animation has played.
end
function init(self)
-- Create a new node and set the texture to a flipbook animation
local node = gui.get_node("button_node")
gui.set_texture(node, "gui_sprites")
gui.play_flipbook(node, "animated_button")
end
Set the texture of a node to an image from an atlas:
-- Create a new node and set the texture to a "button.png" from atlas
local node = gui.get_node("button_node")
gui.set_texture(node, "gui_sprites")
gui.play_flipbook(node, "button")
Type: FUNCTION Plays the paricle fx for a gui node
Parameters
node (node) - node to play particle fx foremitter_state_function (function(self, node, emitter, state)) (optional) - optional callback function that will be called when an emitter attached to this particlefx changes state.selfobject The current object</dd>
nodehash The particle fx node, or nil if the node was deleted</dd>
emitterhash The id of the emitter</dd>
stateconstant the new state of the emitter:</dd> </dl>
particlefx.EMITTER_STATE_SLEEPINGparticlefx.EMITTER_STATE_PRESPAWNparticlefx.EMITTER_STATE_SPAWNINGparticlefx.EMITTER_STATE_POSTSPAWNExamples
How to play a particle fx when a gui node is created. The callback receives the gui node, the hash of the id of the emitter, and the new state of the emitter as particlefx.EMITTER_STATE_.
local function emitter_state_change(self, node, emitter, state)
if emitter == hash("exhaust") and state == particlefx.EMITTER_STATE_POSTSPAWN then
-- exhaust is done spawning particles...
end
end
function init(self)
gui.play_particlefx(gui.get_node("particlefx"), emitter_state_change)
end
Type: CONSTANT loop backward
Type: CONSTANT loop forward
Type: CONSTANT ping pong loop
Type: CONSTANT once backward
Type: CONSTANT once forward
Type: CONSTANT once forward and then backward
Type: CONSTANT color property
Type: CONSTANT euler property
Type: CONSTANT fill_angle property
Type: CONSTANT inner_radius property
Type: CONSTANT leading property
Type: CONSTANT outline color property
Type: CONSTANT position property
Type: CONSTANT rotation property
Type: CONSTANT scale property
Type: CONSTANT shadow color property
Type: CONSTANT size property
Type: CONSTANT slice9 property
Type: CONSTANT tracking property
Type: FUNCTION Resets the input context of keyboard. This will clear marked text.
Type: FUNCTION Resets the node material to the material assigned in the gui scene.
Parameters
node (node) - node to reset the material forExamples
Resetting the material for a node:
local node = gui.get_node("my_node")
gui.reset_material(node)
Type: FUNCTION Resets all nodes in the current GUI scene to their initial state. The reset only applies to static node loaded from the scene. Nodes that are created dynamically from script are not affected.
Type: CONSTANT The provided data is not in the expected format or is in some other way incorrect, for instance the image data provided to gui.new_texture().
Type: CONSTANT The system is out of resources, for instance when trying to create a new texture using gui.new_texture().
Type: CONSTANT The texture id already exists when trying to use gui.new_texture().
Type: CONSTANT Safe area mode that applies insets on all edges.
Type: CONSTANT Safe area mode that applies insets only on the long edges.
Type: CONSTANT Safe area mode that ignores safe area insets.
Type: CONSTANT Safe area mode that applies insets only on the short edges.
Type: FUNCTION Convert the screen position to the local position of supplied node
Parameters
node (node) - node used for getting local transformation matrixscreen_position (vector3) - screen positionReturns
local_position (vector3) - local positionType: FUNCTION Instead of using specific setteres such as gui.set_position or gui.set_scale, you can use gui.set instead and supply the property as a string or a hash. While this function is similar to go.get and go.set, there are a few more restrictions when operating in the gui namespace. Most notably, only these named properties identifiers are supported:
“position” “rotation” “euler” “scale” “color” “outline” “shadow” “size” “fill_angle” (pie) “inner_radius” (pie) “leading” (text) “tracking” (text) “slice9” (slice9)
The value to set must either be a vmath.vector4, vmath.vector3, vmath.quat or a single number and depends on the property name you want to set. I.e when setting the “position” property, you need to use a vmath.vector4 and when setting a single component of the property, such as “position.x”, you need to use a single value. Note: When setting the rotation using the “rotation” property, you need to pass in a vmath.quat. This behaviour is different than from the gui.set_rotation function, the intention is to move new functionality closer to go namespace so that migrating between gui and go is easier. To set the rotation using degrees instead, use the “euler” property instead. The rotation and euler properties are linked, changing one of them will change the backing data of the other. Similar to go.set, you can also use gui.set for setting material constant values on a node. E.g if a material has specified a constant called tint in the .material file, you can use gui.set to set the value of that constant by calling gui.set(node, “tint”, vmath.vec4(1,0,0,1)), or gui.set(node, “matrix”, vmath.matrix4()) if the constant is a matrix. Arrays are also supported by gui.set - to set an array constant, you need to pass in an options table with the ‘index’ key set. If the material has a constant array called ‘tint_array’ specified in the material, you can use gui.set(node, “tint_array”, vmath.vec4(1,0,0,1), { index = 4}) to set the fourth array element to a different value.
Parameters
node (node |
url) - node to set the property for, or msg.url() to the gui itself |
property (string |
hash | constant) - the property to set |
value (number |
vector4 | vector3 | quaternion) - the property to set |
options (table) (optional) - optional options table (only applicable for material constants)index number index into array property (1 based)key hash name of internal propertyExamples
Updates the position property on an existing node:
local node = gui.get_node("my_box_node")
local node_position = gui.get(node, "position")
gui.set(node, "position.x", node_position.x + 128)
Updates the rotation property on an existing node:
local node = gui.get_node("my_box_node")
gui.set(node, "rotation", vmath.quat_rotation_z(math.rad(45)))
-- this is equivalent to:
gui.set(node, "euler.z", 45)
-- or using the entire vector:
gui.set(node, "euler", vmath.vector3(0,0,45))
-- or using the set_rotation
gui.set_rotation(node, vmath.vector3(0,0,45))
Sets various material constants for a node:
local node = gui.get_node("my_box_node")
gui.set(node, "tint", vmath.vector4(1,0,0,1))
-- matrix4 is also supported
gui.set(node, "light_matrix", vmath.matrix4())
-- update a constant in an array at position 4. the array is specified in the shader as:
-- uniform vec4 tint_array[4]; // lua is 1 based, shader is 0 based
gui.set(node, "tint_array", vmath.vector4(1,0,0,1), { index = 4 })
-- update a matrix constant in an array at position 4. the array is specified in the shader as:
-- uniform mat4 light_matrix_array[4];
gui.set(node, "light_matrix_array", vmath.matrix4(), { index = 4 })
-- update a sub-element in a constant
gui.set(node, "tint.x", 1)
-- update a sub-element in an array constant at position 4
gui.set(node, "tint_array.x", 1, {index = 4})
Set a named property
function on_message(self, message_id, message, sender)
if message_id == hash("set_font") then
gui.set(msg.url(), "fonts", message.font, {key = "my_font_name"})
gui.set_font(gui.get_node("text"), "my_font_name")
elseif message_id == hash("set_texture") then
gui.set(msg.url(), "textures", message.texture, {key = "my_texture"})
gui.set_texture(gui.get_node("box"), "my_texture")
gui.play_flipbook(gui.get_node("box"), "logo_256")
end
end
Type: FUNCTION Sets the adjust mode on a node. The adjust mode defines how the node will adjust itself to screen resolutions that differs from the one in the project settings.
Parameters
node (node) - node to set adjust mode foradjust_mode (constant) - adjust mode to setgui.ADJUST_FITgui.ADJUST_ZOOMgui.ADJUST_STRETCHType: FUNCTION sets the node alpha
Parameters
node (node) - node for which to set alphaalpha (number) - 0..1 alpha colorType: FUNCTION Set the blend mode of a node. Blend mode defines how the node will be blended with the background.
Parameters
node (node) - node to set blend mode forblend_mode (constant) - blend mode to setgui.BLEND_ALPHAgui.BLEND_ADDgui.BLEND_ADD_ALPHAgui.BLEND_MULTgui.BLEND_SCREENType: FUNCTION If node is set as an inverted clipping node, it will clip anything inside as opposed to outside.
Parameters
node (node) - node to set clipping inverted state forinverted (boolean) - true or falseType: FUNCTION Clipping mode defines how the node will clip it’s children nodes
Parameters
node (node) - node to set clipping mode forclipping_mode (constant) - clipping mode to setgui.CLIPPING_MODE_NONEgui.CLIPPING_MODE_STENCILType: FUNCTION If node is set as an visible clipping node, it will be shown as well as clipping. Otherwise, it will only clip but not show visually.
Parameters
node (node) - node to set clipping visibility forvisible (boolean) - true or falseType: FUNCTION Sets the color of the supplied node. The components of the supplied vector3 or vector4 should contain the color channel values:
Component Color value
x Red value
y Green value
z Blue value
w vector4 Alpha value
Parameters
node (node) - node to set the color forcolor (vector3 |
vector4) - new color |
Type: FUNCTION Sets a node to the disabled or enabled state. Disabled nodes are not rendered and animations acting on them are not evaluated.
Parameters
node (node) - node to be enabled/disabledenabled (boolean) - whether the node should be enabled or notType: FUNCTION Sets the rotation of the supplied node. The rotation is expressed in degree Euler angles.
Parameters
node (node) - node to set the rotation forrotation (vector3 |
vector4) - new rotation |
Type: FUNCTION Set the sector angle of a pie node.
Parameters
node (node) - node to set the fill angle forangle (number) - sector angleType: FUNCTION This is only useful nodes with flipbook animations. The cursor is normalized.
Parameters
node (node) - node to set the cursor forcursor (number) - cursor valueType: FUNCTION This is only useful nodes with flipbook animations. Sets the playback rate of the flipbook animation on a node. Must be positive.
Parameters
node (node) - node to set the cursor forplayback_rate (number) - playback rateType: FUNCTION This is only useful for text nodes. The font must be mapped to the gui scene in the gui editor.
Parameters
node (node) - node for which to set the fontfont (string |
hash) - font id |
Type: FUNCTION Set the id of the specicied node to a new value. Nodes created with the gui.new_*_node() functions get an empty id. This function allows you to give dynamically created nodes an id. No checking is done on the uniqueness of supplied ids. It is up to you to make sure you use unique ids.
Parameters
node (node) - node to set the id forid (string |
hash) - id to set |
Examples
Create a new node and set its id:
local pos = vmath.vector3(100, 100, 0)
local size = vmath.vector3(100, 100, 0)
local node = gui.new_box_node(pos, size)
gui.set_id(node, "my_new_node")
Type: FUNCTION sets the node inherit alpha state
Parameters
node (node) - node from which to set the inherit alpha stateinherit_alpha (boolean) - true or falseType: FUNCTION Sets the inner radius of a pie node. The radius is defined along the x-axis.
Parameters
node (node) - node to set the inner radius forradius (number) - inner radiusType: FUNCTION The layer must be mapped to the gui scene in the gui editor.
Parameters
node (node) - node for which to set the layerlayer (string |
hash) - layer id |
Type: FUNCTION Applies a named layout on the GUI scene. This re-applies per-layout node descriptors and, if a matching Display Profile exists, updates the scene resolution. Emits the “layout_changed” message to the scene script when the layout actually changes.
Parameters
layout (string |
hash) - the layout id to apply |
Returns
return (boolean) - true if the layout exists in the scene and was applied, false otherwiseType: FUNCTION Sets the leading value for a text node. This value is used to scale the line spacing of text.
Parameters
node (node) - node for which to set the leadingleading (number) - a scaling value for the line spacing (default=1)Type: FUNCTION Sets the line-break mode on a text node. This is only useful for text nodes.
Parameters
node (node) - node to set line-break forline_break (boolean) - true or falseType: FUNCTION Set the material on a node. The material must be mapped to the gui scene in the gui editor, and assigning a material is supported for all node types. To set the default material that is assigned to the gui scene node, use gui.reset_material(node_id) instead.
Parameters
node (node) - node to set material formaterial (string |
hash) - material id |
Examples
Assign an existing material to a node:
local node = gui.get_node("my_node")
gui.set_material(node, "my_material")
Type: FUNCTION Sets the outer bounds mode for a pie node.
Parameters
node (node) - node for which to set the outer bounds modebounds_mode (constant) - the outer bounds mode of the pie node:gui.PIEBOUNDS_RECTANGLEgui.PIEBOUNDS_ELLIPSEType: FUNCTION Sets the outline color of the supplied node. See gui.set_color for info how vectors encode color values.
Parameters
node (node) - node to set the outline color forcolor (vector3 |
vector4) - new outline color |
Type: FUNCTION Sets the parent node of the specified node.
Parameters
node (node) - node for which to set its parentparent (node) (optional) - parent node to set, pass nil to remove parentkeep_scene_transform (boolean) (optional) - optional flag to make the scene position being perservedType: FUNCTION Set the paricle fx for a gui node
Parameters
node (node) - node to set particle fx forparticlefx (hash |
string) - particle fx id |
Type: FUNCTION Sets the number of generated vertices around the perimeter of a pie node.
Parameters
node (node) - pie nodevertices (number) - vertex countType: FUNCTION The pivot specifies how the node is drawn and rotated from its position.
Parameters
node (node) - node to set pivot forpivot (constant) - pivot constantgui.PIVOT_CENTERgui.PIVOT_Ngui.PIVOT_NEgui.PIVOT_Egui.PIVOT_SEgui.PIVOT_Sgui.PIVOT_SWgui.PIVOT_Wgui.PIVOT_NWType: FUNCTION Sets the position of the supplied node.
Parameters
node (node) - node to set the position forposition (vector3 |
vector4) - new position |
Type: FUNCTION Set the order number for the current GUI scene. The number dictates the sorting of the “gui” render predicate, in other words in which order the scene will be rendered in relation to other currently rendered GUI scenes. The number must be in the range 0 to 15.
Parameters
order (number) - rendering order (0-15)Type: FUNCTION Sets the rotation of the supplied node. The rotation is expressed as a quaternion
Parameters
node (node) - node to set the rotation forrotation (quaternion |
vector4) - new rotation |
Type: FUNCTION Sets how the safe area is applied to this gui scene.
Parameters
mode (constant) - safe area modegui.SAFE_AREA_NONEgui.SAFE_AREA_LONGgui.SAFE_AREA_SHORTgui.SAFE_AREA_BOTHType: FUNCTION Sets the scaling of the supplied node.
Parameters
node (node) - node to set the scale forscale (vector3 |
vector4) - new scale |
Type: FUNCTION Set the screen position to the supplied node
Parameters
node (node) - node to set the screen position toscreen_position (vector3) - screen positionType: FUNCTION Sets the shadow color of the supplied node. See gui.set_color for info how vectors encode color values.
Parameters
node (node) - node to set the shadow color forcolor (vector3 |
vector4) - new shadow color |
Type: FUNCTION Sets the size of the supplied node. You can only set size on nodes with size mode set to SIZE_MODE_MANUAL
Parameters
node (node) - node to set the size forsize (vector3 |
vector4) - new size |
Type: FUNCTION Sets the size mode of a node. The size mode defines how the node will adjust itself in size. Automatic size mode alters the node size based on the node’s content. Automatic size mode works for Box nodes and Pie nodes which will both adjust their size to match the assigned image. Particle fx and Text nodes will ignore any size mode setting.
Parameters
node (node) - node to set size mode forsize_mode (constant) - size mode to setgui.SIZE_MODE_MANUALgui.SIZE_MODE_AUTOType: FUNCTION Set the slice9 configuration values for the node.
Parameters
node (node) - node to manipulatevalues (vector4) - new valuesType: FUNCTION Set the text value of a text node. This is only useful for text nodes.
Parameters
node (node) - node to set text fortext (string |
number) - text to set |
Type: FUNCTION Set the texture on a box or pie node. The texture must be mapped to the gui scene in the gui editor. The function points out which texture the node should render from. If the texture is an atlas, further information is needed to select which image/animation in the atlas to render. In such cases, use gui.play_flipbook() in addition to this function.
Parameters
node (node) - node to set texture fortexture (string |
hash) - texture id |
Examples
To set a texture (or animation) from an atlas:
local node = gui.get_node("box_node")
gui.set_texture(node, "my_atlas")
gui.play_flipbook(node, "image")
Set a dynamically created texture to a node. Note that there is only one texture image in this case so gui.set_texture() is sufficient.
local w = 200
local h = 300
-- A nice orange. String with the RGB values.
local orange = string.char(0xff) .. string.char(0x80) .. string.char(0x10)
-- Create the texture. Repeat the color string for each pixel.
if gui.new_texture("orange_tx", w, h, "rgb", string.rep(orange, w * h)) then
local node = gui.get_node("box_node")
gui.set_texture(node, "orange_tx")
end
Type: FUNCTION Set the texture buffer data for a dynamically created texture.
Parameters
texture (string |
hash) - texture id |
width (number) - texture widthheight (number) - texture heighttype (string |
constant) - texture type |
"rgb" - RGB"rgba" - RGBA"l" - LUMINANCE"astc" - ASTC compressed formatbuffer (string) - texture dataflip (boolean) - flip texture verticallyReturns
success (boolean) - setting the data was successfulExamples
function init(self)
local w = 200
local h = 300
-- Create a dynamic texture, all white.
if gui.new_texture("dynamic_tx", w, h, "rgb", string.rep(string.char(0xff), w * h * 3)) then
-- Create a box node and apply the texture to it.
local n = gui.new_box_node(vmath.vector3(200, 200, 0), vmath.vector3(w, h, 0))
gui.set_texture(n, "dynamic_tx")
...
-- Change the data in the texture to a nice orange.
local orange = string.char(0xff) .. string.char(0x80) .. string.char(0x10)
if gui.set_texture_data("dynamic_tx", w, h, "rgb", string.rep(orange, w * h)) then
-- Go on and to more stuff
...
end
else
-- Something went wrong
...
end
end
Type: FUNCTION Sets the tracking value of a text node. This value is used to adjust the vertical spacing of characters in the text.
Parameters
node (node) - node for which to set the trackingtracking (number) - a scaling number for the letter spacing (default=0)Type: FUNCTION Set if a node should be visible or not. Only visible nodes are rendered.
Parameters
node (node) - node to be visible or notvisible (boolean) - whether the node should be visible or notType: FUNCTION The x-anchor specifies how the node is moved when the game is run in a different resolution.
Parameters
node (node) - node to set x-anchor foranchor (constant) - anchor constantgui.ANCHOR_NONEgui.ANCHOR_LEFTgui.ANCHOR_RIGHTType: FUNCTION The y-anchor specifies how the node is moved when the game is run in a different resolution.
Parameters
node (node) - node to set y-anchor foranchor (constant) - anchor constantgui.ANCHOR_NONEgui.ANCHOR_TOPgui.ANCHOR_BOTTOMType: FUNCTION Shows the on-display touch keyboard. The specified type of keyboard is displayed if it is available on the device. This function is only available on iOS and Android. .
Parameters
type (constant) - keyboard typegui.KEYBOARD_TYPE_DEFAULTgui.KEYBOARD_TYPE_EMAILgui.KEYBOARD_TYPE_NUMBER_PADgui.KEYBOARD_TYPE_PASSWORDautoclose (boolean) - if the keyboard should automatically close when clicking outsideType: CONSTANT The size of the node is determined by the currently assigned texture.
Type: CONSTANT The size of the node is determined by the size set in the editor, the constructor or by gui.set_size()
Type: FUNCTION Stops the particle fx for a gui node
Parameters
node (node) - node to stop particle fx foroptions (table) (optional) - options when stopping the particle fx. Supported options:clear: instantly clear spawned particlesType: CONSTANT box type
Type: CONSTANT custom type
Type: CONSTANT particlefx type
Type: CONSTANT pie type
Type: CONSTANT text type
Type: FUNCTION This is a callback-function, which is called by the engine when a gui component is initialized. It can be used to set the initial state of the script and gui scene.
Parameters
self (userdata) - reference to the script state to be used for storing dataExamples
function init(self)
-- set up useful data
self.my_value = 1
end
Type: MESSAGE This message is broadcast to every GUI component when a layout change has been initiated on device.
Parameters
id (hash) - the id of the layout the engine is changing toprevious_id (hash) - the id of the layout the engine is changing fromExamples
function on_message(self, message_id, message, sender)
if message_id == hash("layout_changed") and message.id == hash("Landscape") then
-- switching layout to "Landscape"...
...
end
end
Type: PROPERTY The main material (the default material assigned to a GUI) used when rendering the gui. The type of the property is hash.
Examples
How to set material using a script property (see resource.material)
go.property("desaturate_material", resource.material("/desaturate.material"))
function init(self)
go.set("#gui", "material", self.desaturate_material)
end
Type: PROPERTY The materials used when rendering the gui. The type of the property is hash. Key must be specified in options table.
Examples
How to change a named material resource using a script property from a script
go.property("my_material", resource.material("/my_material.material"))
function init(self)
-- this will update the "my_gui_material" entry in the GUI to use the material
-- specified in the "my_material" script property.
go.set("#gui", "materials", self.my_material, { key = "my_gui_material" })
end
Type: FUNCTION This is a callback-function, which is called by the engine when user input is sent to the instance of the gui component. It can be used to take action on the input, e.g. modify the gui according to the input. For an instance to obtain user input, it must first acquire input focus through the message acquire_input_focus. Any instance that has obtained input will be put on top of an input stack. Input is sent to all listeners on the stack until the end of stack is reached, or a listener returns true to signal that it wants input to be consumed. See the documentation of acquire_input_focus for more information. The action parameter is a table containing data about the input mapped to the action_id. For mapped actions it specifies the value of the input and if it was just pressed or released. Actions are mapped to input in an input_binding-file. Mouse movement is specifically handled and uses nil as its action_id. The action only contains positional parameters in this case, such as x and y of the pointer. Here is a brief description of the available table fields:
Field Description
value The amount of input given by the user. This is usually 1 for buttons and 0-1 for analogue inputs. This is not present for mouse movement and text input.
pressed If the input was pressed this frame. This is not present for mouse movement and text input.
released If the input was released this frame. This is not present for mouse movement and text input.
repeated If the input was repeated this frame. This is similar to how a key on a keyboard is repeated when you hold it down. This is not present for mouse movement and text input.
x The x value of a pointer device, if present. This is not present for gamepad, key and text input.
y The y value of a pointer device, if present. This is not present for gamepad, key and text input.
screen_x The screen space x value of a pointer device, if present. This is not present for gamepad, key and text input.
screen_y The screen space y value of a pointer device, if present. This is not present for gamepad, key and text input.
dx The change in x value of a pointer device, if present. This is not present for gamepad, key and text input.
dy The change in y value of a pointer device, if present. This is not present for gamepad, key and text input.
screen_dx The change in screen space x value of a pointer device, if present. This is not present for gamepad, key and text input.
screen_dy The change in screen space y value of a pointer device, if present. This is not present for gamepad, key and text input.
gamepad The index of the gamepad device that provided the input. See table below about gamepad input.
touch List of touch input, one element per finger, if present. See table below about touch input
text Text input from a (virtual) keyboard or similar.
marked_text Sequence of entered symbols while entering a symbol combination, for example Japanese Kana.
Gamepad specific fields:
Field Description
gamepad The index of the gamepad device that provided the input.
userid Id of the user associated with the controller. Usually only relevant on consoles.
gamepad_unknown True if the inout originated from an unknown/unmapped gamepad.
gamepad_name Name of the gamepad
gamepad_axis List of gamepad axis values. For raw gamepad input only.
gamepadhats List of gamepad hat values. For raw gamepad input only.
gamepad_buttons List of gamepad button values. For raw gamepad input only.
Touch input table:
Field Description
id A number identifying the touch input during its duration.
pressed True if the finger was pressed this frame.
released True if the finger was released this frame.
tap_count Number of taps, one for single, two for double-tap, etc
x The x touch location.
y The y touch location.
dx The change in x value.
dy The change in y value.
acc_x Accelerometer x value (if present).
acc_y Accelerometer y value (if present).
acc_z Accelerometer z value (if present).
Parameters
self (userdata) - reference to the script state to be used for storing dataaction_id (hash) - id of the received input action, as mapped in the input_binding-fileaction (table) - a table containing the input data, see above for a descriptionReturns
consume (boolean |
nil) - optional boolean to signal if the input should be consumed (not passed on to others) or not, default is false |
Examples
function on_input(self, action_id, action)
-- check for input
if action_id == hash("my_action") then
-- take appropritate action
self.my_value = action.value
end
-- consume input
return true
end
Type: FUNCTION This is a callback-function, which is called by the engine whenever a message has been sent to the gui component. It can be used to take action on the message, e.g. update the gui or send a response back to the sender of the message. The message parameter is a table containing the message data. If the message is sent from the engine, the documentation of the message specifies which data is supplied. See the update function for examples on how to use this callback-function.
Parameters
self (userdata) - reference to the script state to be used for storing datamessage_id (hash) - id of the received messagemessage (table) - a table containing the message dataType: FUNCTION This is a callback-function, which is called by the engine when the gui script is reloaded, e.g. from the editor. It can be used for live development, e.g. to tweak constants or set up the state properly for the script.
Parameters
self (userdata) - reference to the script state to be used for storing dataExamples
function on_reload(self)
-- restore some color (or similar)
gui.set_color(gui.get_node("my_node"), self.my_original_color)
end
Type: PROPERTY The textures used in the gui. The type of the property is hash. Key must be specified in options table.
Examples
How to set texture using a script property (see resource.atlas)
go.property("cards_red", resource.atlas("/cards_red.atlas"))
go.property("cards_blue", resource.atlas("/cards_blue.atlas"))
function init(self)
go.set("#gui", "textures", self.cards_red, {key = "cards"})
end
Type: FUNCTION This is a callback-function, which is called by the engine every frame to update the state of a gui component. It can be used to perform any kind of gui related tasks, e.g. animating nodes.
Parameters
self (userdata) - reference to the script state to be used for storing datadt (number) - the time-step of the frame updateExamples
This example demonstrates how to update a text node that displays game score in a counting fashion. It is assumed that the gui component receives messages from the game when a new score is to be shown.
function init(self)
-- fetch the score text node for later use (assumes it is called "score")
self.score_node = gui.get_node("score")
-- keep track of the current score counted up so far
self.current_score = 0
-- keep track of the target score we should count up to
self.target_score = 0
-- how fast we will update the score, in score/second
self.score_update_speed = 1
end
function update(self, dt)
-- check if target score is more than current score
if self.current_score self.target_score then
self.current_score = self.target_score
end
-- update the score text node
gui.set_text(self.score_node, "" .. math.floor(self.current_score))
end
end
function on_message(self, message_id, message, sender)
-- check the message
if message_id == hash("set_score") then
self.target_score = message.score
end
end