class GLXFInternalNode(val entity: Entity, transform: GLXFNodeTransform, var name: String? = null, asset: GLXFAsset = GLXFAsset.nullGLXFAsset(), children: MutableList<GLXFNode> = mutableListOf<GLXFNode>(), childrenIndices: MutableSet<Int> = mutableSetOf<Int>(), isRoot: Boolean = true) : GLXFNode
GLXFInternalNode
(
entity
, transform
, name
, asset
, children
, childrenIndices
, isRoot
)
|
Signature
constructor(entity: Entity, transform: GLXFNodeTransform, name: String? = null, asset: GLXFAsset = GLXFAsset.nullGLXFAsset(), children: MutableList<GLXFNode> = mutableListOf<GLXFNode>(), childrenIndices: MutableSet<Int> = mutableSetOf<Int>(), isRoot: Boolean = true) Parameters
entity:
Entity
transform:
GLXFNodeTransform
name:
String?
asset:
GLXFAsset
children:
MutableList
childrenIndices:
MutableSet
isRoot:
Boolean
Returns |
entity
: Entity
[Get] |
The entity associated with the node.
Signature
val entity: Entity |
name
: String?
[Get][Set] |
The name of the node.
Signature
var name: String? |
getChildren
()
|
gets a list of the children nodes
Signature
fun getChildren(): List<GLXFNode> Returns
List
|