5 #include <PyNoiseSourceWrapper.h> 26 double getLastCheckZ() {
return platform.
lastCheckZ; }
28 void setLastCheckZ(
double checkZ) { platform.
lastCheckZ = checkZ; }
30 double getDmax() {
return platform.
dmax; }
32 void setDmax(
double dmax) { platform.
dmax = dmax; }
38 bool isOnGround() {
return platform.
onGround; }
40 void setOnGround(
bool onGround) { platform.
onGround = onGround; }
42 bool isStopAndTurn() {
return platform.
stopAndTurn; }
44 void setStopAndTurn(
bool stopAndTurn) { platform.
stopAndTurn = stopAndTurn; }
48 void setSlowdownEnabled(
bool slowdownEnabled) { platform.
slowdownEnabled = slowdownEnabled; }
54 bool isSmoothTurn() {
return platform.
smoothTurn; }
56 void setSmoothTurn(
bool smoothTurn) { platform.
smoothTurn = smoothTurn; }
60 void setOrientationOnLegInit(
bool setOrientationOnLegInit) { platform.
mSetOrientationOnLegInit = setOrientationOnLegInit; }
106 Rotation & getCachedAbsoluteAttitude()
Definition: Rotation.h:80
Wrapper for NoiseSource abstract class.
Definition: PyNoiseSourceWrapper.h:14
Wrapper to communicate glm::dvec3 with python.
Definition: PythonDVec3.h:14