Construct with no properties
| 106 | |
| 107 | // Construct with no properties |
| 108 | Light() |
| 109 | : node(createByClassName("light")) |
| 110 | { |
| 111 | if (node) |
| 112 | { |
| 113 | entity = Node_getEntity(node); |
| 114 | iLightNode = Node_getLightNode(node); |
| 115 | } |
| 116 | } |
| 117 | |
| 118 | // Return the light texture matrix |
| 119 | Matrix4 getMatrix() const |
nothing calls this directly
no test coverage detected