RingRacers/src/objects/CMakeLists.txt
toaster a74b7995c9 Implement Follower Audience object
- Replaces Chao audience entirely
    - Convenient, because one of the two default follower types used in the audience is Chao
- Can provide one follower, or a list of followers, on the stringarg1 (seperated by spaces/commas) and it'll pick randomly between them
    - If not provided, uses the mapheader follower list
- Can provide one skincolor, or a list of skincolors, on the stringarg2 (seperated by spaces/commas) and it'll pick randomly between them
    - If not provided, uses the follower's default color
    - If the follower's default color is Match/Opposite or the user provides "Random" in stringarg2, pick a random skincolor
- If arg3 is set, floats in the air
    - MTF_OBJECTSPECIAL in binary format
- If arg4 is set, faces the closest player
    - MTF_AMBUSH in binary format
    - Uses some funny mathematical tricks to avoid checking on the same frame as every other audience member at once
2023-04-20 23:15:56 +01:00

19 lines
229 B
CMake

target_sources(SRB2SDL2 PRIVATE
hyudoro.c
gardentop.c
shrink.c
item-debris.c
spb.c
manta-ring.c
orbinaut.c
jawz.c
duel-bomb.c
broly.c
ufo.c
monitor.c
item-spot.c
loops.c
drop-target.c
ring-shooter.c
audience.c
)