The Amount include contains all kinds of color related functions to get the animation of NPC’s.
function PixelShiftMulti(B: TBoxArray; T: Integer): TIntegerArray;
Calculates how many pixels change in boxes B during time T.
Note
by marpis
Example:
function PixelShiftMulti(B: TBoxArray; T: Integer): TIntegerArray;
Calculates how many pixels change in boxes B during time T.
Note
by marpis
Example:
function AnimatingMulti(B: TBoxArray; Time, MinCount: Integer): TBooleanArray;
Finds constant animation in boxes B during time T. If PixelShift in box is smaller than MinCount, it’s considered not animating. .. note:
by marpis
Example:
function Animating(B: TBox; Time, MinCount: Integer): Boolean;
Finds constant animation in box B during time T. If PixelShift in box B is smaller than MinCount, it’s considered not animating.
Note
by marpis
Example: