RegisterFeatures.cpp 231 B

123456789101112
  1. #include "RegisterFeatures.h"
  2. extern "C" void UnityEnableGyroscope(bool value);
  3. extern "C" void UnityEnableStylusTouch(bool value);
  4. void RegisterFeatures()
  5. {
  6. UnityEnableGyroscope(false);
  7. UnityEnableStylusTouch(true);
  8. }