Hi guys, I am developing a system which is a city with pedestrians and vehicles with a traffic light system. Doing everything by myself is very time-costing, I saw different plugins on Fab but they are only for pedestrians or for vehicles, I can’t find a plugin with both together. I’m afraid that if I use two different plugins I won’t be able to make them work together. I mean, if the pedestrian plugins has its own traffic light system and the vehicles plugin has its own traffic light system as well, I don’t know how to integrate them.
You’re creating a system with pedestrians, vehicles, and a traffic light system in Unreal, but the plugins you found only handle pedestrians or vehicles separately. To merge them:
Implement a Unified Traffic Light System: Create a central actor or manager to control the traffic lights for both vehicles and pedestrians so that they are coordinated
Use Blueprint Interfaces: Establish communication between the vehicle and pedestrian systems using Blueprint Interfaces, so that both respond accordingly to traffic light changes.
Customize Traffic Light Phases: Ensure that the traffic light system controls phases like “Vehicle Green + Pedestrian Red” and “Vehicle Red + Pedestrian Green” and coordinate them accordingly.
Test and Optimize: Well-test the system to ensure that it reads well, especially with respect to vehicle and pedestrian flow, and optimize for performance
This will make sure that you integrate both plugins into one combined system