Files
Basalt/docs/objects/Object/getName.md
Robert Jelic ab72f244ed Updated some formatting
Updated formatting for object
2022-10-20 21:05:29 +02:00

359 B

Object

getName

Returns the given name of the object

Returns

  1. string name

Usage

  • Prints name of object to debug window
local main = basalt.createFrame()
basalt.debug(main:getName()) -- returns the uuid
local main = basalt.createFrame("myFirstMainFrame")
basalt.debug(main:getName()) -- returns myFirstMainFrame