|
API Documentation
|
|
|
virtual void setVar(nkMemory::StringView name, double value)=0
virtual Function * setFunc(nkMemory::StringView name)=0
virtual void setVar(nkMemory::StringView name, const ScriptObjectReference &value)=0
Encompasses all API of component NilkinsScripts.
Definition: Environment.h:7
Holds information and allow control over a namespace in a scripting environment.
Definition: Namespace.h:12
virtual void setVar(nkMemory::StringView name, float value)=0
virtual Namespace * getNamespace(nkMemory::StringView name) const =0
virtual UserType * setUserType(nkMemory::StringView name)=0
virtual void shutdown()=0
virtual void setVar(nkMemory::StringView name, bool value)=0
Represents a user type and all the information and control related.
Definition: UserType.h:27
virtual void setObject(nkMemory::StringView name, nkMemory::StringView userTypeName, void *value)=0
A reference over an object in the scripting environment.
Definition: ScriptObjectReference.h:30
nkMemory::StringView getName() const
virtual UserType * getUserType(nkMemory::StringView name) const =0
Class holding information about a string, with no ownership over the data.
Definition: StringView.h:22
virtual void setVar(nkMemory::StringView name, nkMemory::StringView value)=0
virtual Namespace * setNamespace(nkMemory::StringView name)=0
Namespace(nkMemory::StringView name) noexcept
virtual void setVar(nkMemory::StringView name, int value)=0
void setVar(nkMemory::StringView name, const char *value)
Holds information, and controls, over a function in a scripting environment.
Definition: Function.h:50