| 4180 | } |
| 4181 | |
| 4182 | PropertyResult SetPropertyFromMatrix4(HInstance instance, dmhash_t component_id, dmhash_t property_id, const dmVMath::Matrix4& value) |
| 4183 | { |
| 4184 | PropertyOptions options; |
| 4185 | PropertyVar prop_value(value); |
| 4186 | PropertyResult r = SetProperty(instance, component_id, property_id, options, prop_value); |
| 4187 | return r; |
| 4188 | } |
| 4189 | |
| 4190 | // Recreate the instance at the given index with a new prototype. |
| 4191 | // Specifically: |
nothing calls this directly
no test coverage detected