Files
Basalt/docs/objects/Object/getName.md
Robert Jelic 4d614372a1 Updated docs
There is still stuff to do
2022-08-28 18:18:26 +02:00

348 B

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