| 49 | } |
| 50 | |
| 51 | static Result CompAnimcInit(const ComponentTypeCreateCtx* ctx, ComponentType* type) |
| 52 | { |
| 53 | ComponentTypeSetPrio(type, 250); |
| 54 | ComponentTypeSetReadsTransforms(type, true); |
| 55 | ComponentTypeSetNewWorldFn(type, CompAnimNewWorld); |
| 56 | ComponentTypeSetDeleteWorldFn(type, CompAnimDeleteWorld); |
| 57 | ComponentTypeSetAddToUpdateFn(type, CompAnimAddToUpdate); |
| 58 | ComponentTypeSetUpdateFn(type, CompAnimUpdate); |
| 59 | return dmGameObject::RESULT_OK; |
| 60 | } |
| 61 | |
| 62 | } |
| 63 |
nothing calls this directly
no test coverage detected