Skip to content

Urho3DSubsystem bindable

Konstantin Tomashevich edited this page Jun 17, 2017 · 1 revision

Usage

Short declaration of your Urho3D subsystem. Example:

//@ASBindGen Urho3DSubsystem BindingName=subsystemX Type=MyNameSpace::SubsystemX

This command-comment declares Urho3D subsystem, which will be accessable from script as subsystemX. If its binding type not sepcified, ASBindGen will use its type binding name.

Binding arguments

BindingName

Specifies subsystem binding name. Subsystem will be accessable from script by this name. Example:

//@ASBindGen Urho3DSubsystem BindingName=subsystemX ...

Type

Subsystem type name. Example:

//@ASBindGen Urho3DSubsystem ... Type=SubsystemX

BindingType

Manually specifies subsystem binding type. Example:

//@ASBindGen Urho3DSubsystem ... BindingType=SubsystemXYZ