| 102 | } |
| 103 | |
| 104 | static U32 CtoOCB(xAnimTransition*, xAnimSingle*, void* object) |
| 105 | { |
| 106 | // non-matching: floats |
| 107 | xVec3 tmp; |
| 108 | |
| 109 | xVec3Copy(&tmp, (xVec3*)&((_zEntTeleportBox*)object)->model->Mat->pos); |
| 110 | |
| 111 | tmp.y += 1.0f; |
| 112 | |
| 113 | zFX_SpawnBubbleHit(&tmp, 50); |
| 114 | xSndPlay3D(xStrHash("Box_open"), 0.77f, 0.0f, 128, 0, &tmp, 0.0f, SND_CAT_GAME, 0.0f); |
| 115 | |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | static U32 JumpInEffectPlrInvisibleCB(U32, xAnimActiveEffect*, xAnimSingle*, void* object) |
| 120 | { |
nothing calls this directly
no test coverage detected