1)How can I make Visual Studio rebuild the project by recompiling only the files I changed, and not recompile all the project's files? It should be quite simple but I couldn't make VC do it...
2)I tried many ways to change the unit's maxSpeed, but changing the maxSpeed variable in MoveType or GrounfMoveType didn't work.
I was able to change unit's speeds by tweaking some variables in groundMoveType but that was not very usefull for what I'm trying to accomplish which is (it's needed to be implemented a long time):
Make a way for a group of units to stay close when moving by leveling their maxSpeed/acceleration and also maybe "waiting" for each other (keep the max distance between neighbour units)
Any idea how to code that?
Questions on recompiling project, setting maxspeed
Moderator: Moderators
Re: Questions on recompiling project, setting maxspeed
Use Build instead of Rebuild.alik83 wrote:1)How can I make Visual Studio rebuild the project by recompiling only the files I changed, and not recompile all the project's files? It should be quite simple but I couldn't make VC do it...