| 342 | F32 weight[768]; |
| 343 | }; |
| 344 | |
| 345 | popper_data poppers[8]; |
| 346 | entrail_data* entrails; |
| 347 | U32 entrails_size; |
| 348 | |
| 349 | void entrail_data::reset() |
| 350 | { |
| 351 | flags = 0; |
| 352 | emitted = 0.0f; |
| 353 | } |
| 354 | |
| 355 | void set_popper_alpha(popper_data& data, F32 alpha) |
| 356 | { |
| 357 | xEntShow(data.ent); |
| 358 | xModelInstance* p = data.ent->model; |
| 359 | p->Alpha = alpha; |
| 360 | p->Flags |= 0x4000; |
no test coverage detected