| 822 | } |
| 823 | |
| 824 | void xEntBoulder_Setup(xEntBoulder* ent) |
| 825 | { |
| 826 | ent->asset->redMult = 1.0f; |
| 827 | ent->asset->greenMult = 1.0f; |
| 828 | ent->asset->blueMult = 1.0f; |
| 829 | |
| 830 | if (ent->model != NULL) |
| 831 | { |
| 832 | ent->asset->seeThru = ent->model->Alpha; |
| 833 | } |
| 834 | else |
| 835 | { |
| 836 | ent->asset->seeThru = 1.0f; |
| 837 | } |
| 838 | |
| 839 | xEntSetup(ent); |
| 840 | } |
| 841 | |
| 842 | void xEntBoulder_Reset(xEntBoulder* boul, xScene* sc) |
| 843 | { |
no test coverage detected