| 1424 | } |
| 1425 | |
| 1426 | S32 zNPCGoalBossSandyIdle::Enter(F32 dt, void* updCtxt) |
| 1427 | { |
| 1428 | zNPCBSandy* sandy = (zNPCBSandy*)psyche->clt_owner; |
| 1429 | |
| 1430 | timeInGoal = 0.0f; |
| 1431 | sandy->bossFlags |= 0x20; |
| 1432 | |
| 1433 | xVec3Init(&sandy->frame->vel, 0.0f, 0.0f, 0.0f); |
| 1434 | |
| 1435 | sandy->boundFlags[10] |= 0x10; |
| 1436 | sandy->boundFlags[12] |= 0x10; |
| 1437 | |
| 1438 | return zNPCGoalCommon::Enter(dt, updCtxt); |
| 1439 | } |
| 1440 | |
| 1441 | S32 zNPCGoalBossSandyIdle::Process(en_trantype* trantype, F32 dt, void* updCtxt, xScene* xscn) |
| 1442 | { |
nothing calls this directly
no test coverage detected