Lines Matching defs:node
30 // not a node.
83 auto node = interface_pointer_cast<SCENE_NS::ISubMesh>(GetThisNativeObject(ctx));
84 if (!node) {
85 // return undefined.. as no actual node.
90 ExecSyncTask([node, &aabmin, &aabmax]() {
91 aabmin = node->AABBMin()->GetValue();
92 aabmax = node->AABBMax()->GetValue();
114 if (auto node = interface_pointer_cast<SCENE_NS::ISubMesh>(GetThisNativeObject(ctx))) {
115 ExecSyncTask([node, &name]() {
116 name = node->Name()->GetValue();
126 if (auto node = interface_pointer_cast<SCENE_NS::ISubMesh>(GetThisNativeObject(ctx))) {
128 ExecSyncTask([node, name]() {
129 node->Name()->SetValue(name);
173 // return undefined.. as no actual node.