i just know this is way too late but one question,, how do i make the highlighting appear on the other selected actors? i already entered the code into the leader's condition bar thing on the hud maker,, but idk what i'm supposed to change in the code to make the highlighting appear on the other battler,
As mentioned, you can use 1 "highlight" picture per actor, each with its own condition:
If it's SRD Hud Maker then I imagine you could just have 1 overlay image per party member. Then enable each overlay only when the inputting actor is in the corresponding position. E.g. for the party leader (index 0):
BattleManager.actor() ? BattleManager.actor().index() === 0 : false
The piece of code @caethyril gave you is a condition that is true while the first actor in the party is inputting their action (because arrays start their numbering with 0). You can adapt it for the other actors by changing the number.
The next position is 1, then 2, etc. Just replace
0 with the appropriate number.
Graphics.frameCount % 60 < 30 repeats every 60 frames: it is true for 30 frames (0~29), then false for 30 frames (30~59). So it gives the "blinking" effect requested by the OP.
On this site we encourage people to start their own thread for their own question, rather than hijack an existing one. So if you still have questions, feel free to start a new thread~
:kaohi:
This thread is being closed, due to being solved. If for some reason you would like this thread re-opened, please report this post and leave a message why. Thank you.