Home
last modified time | relevance | path

Searched refs:_rotation_time (Results 1 – 2 of 2) sorted by relevance

/dports/games/battletanks/btanks-0.9.8083/engine/src/
H A Dobject.cpp100 _rotation_time(0), in Object()
608 s.add(_rotation_time); in serialize()
698 s.get(_rotation_time); in deserialize()
890 _rotation_time = 0; in limit_rotation()
896 if (_rotation_time <= 0) { in limit_rotation()
902 _rotation_time = speed; in limit_rotation()
906 if (_rotation_time > 0) { in limit_rotation()
907 _rotation_time -= dt; in limit_rotation()
908 if (_rotation_time <= 0) { in limit_rotation()
919 _rotation_time = (_direction_idx == _dst_direction)? 0: speed; in limit_rotation()
H A Dobject.h300 float _rotation_time; variable