Skip to content

class_get_name

NikkoTC edited this page Sep 4, 2023 · 6 revisions

This function returns the class name of a given class.


Syntax

class_get_name(classID);
Argument Description
classID The unique class ID

Returns

String


Example

var className = class_get_name(MyClass);
show_debug_message(className);

The above code will show in debug log the name of MyClass class.