| 1092 | } |
| 1093 | |
| 1094 | void zPlatform_BreakawayFallFX(zPlatform* ent, F32 dt) |
| 1095 | { |
| 1096 | if (sEmitBreakaway != NULL) |
| 1097 | { |
| 1098 | xParEmitterCustomSettings info; |
| 1099 | info.custom_flags = 0x100; |
| 1100 | info.pos = *xEntGetCenter(ent); |
| 1101 | info.pos.y += 0.5f; |
| 1102 | for (S32 iVar2 = 0; iVar2 < 25; iVar2++) |
| 1103 | { |
| 1104 | xParEmitterEmitCustom(sEmitBreakaway, 1/30.f, &info); |
| 1105 | } |
| 1106 | } |
| 1107 | } |
| 1108 | |
| 1109 | void zPlatform_Mount(zPlatform* plat) |
| 1110 | { |
no test coverage detected