mirror of
https://gitea.sffempire.ru/Kolyah35/minecraft-pe-0.6.1.git
synced 2026-03-19 22:43:32 +00:00
Fix: Creative mode flying and cheats enabled
This commit is contained in:
@@ -721,7 +721,7 @@ void Minecraft::tickInput() {
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
#if defined(PLATFORM_DESKTOP)
|
#if defined(PLATFORM_DESKTOP) || defined (_WIN32)
|
||||||
if (key == Keyboard::KEY_E) {
|
if (key == Keyboard::KEY_E) {
|
||||||
screenChooser.setScreen(SCREEN_BLOCKSELECTION);
|
screenChooser.setScreen(SCREEN_BLOCKSELECTION);
|
||||||
}
|
}
|
||||||
@@ -741,22 +741,13 @@ void Minecraft::tickInput() {
|
|||||||
// Change distance
|
// Change distance
|
||||||
if (key == Keyboard::KEY_F)
|
if (key == Keyboard::KEY_F)
|
||||||
options.viewDistance = (options.viewDistance + 1) % 4;
|
options.viewDistance = (options.viewDistance + 1) % 4;
|
||||||
#endif
|
|
||||||
#if defined(WIN32)
|
#ifdef CHEATS
|
||||||
if (key == Keyboard::KEY_F) {
|
if (key == Keyboard::KEY_J) {
|
||||||
options.isFlying = !options.isFlying;
|
options.isFlying = !options.isFlying;
|
||||||
player->noPhysics = options.isFlying;
|
player->noPhysics = options.isFlying;
|
||||||
}
|
}
|
||||||
|
|
||||||
// if (key == Keyboard::KEY_T) {
|
|
||||||
// options.thirdPersonView = !options.thirdPersonView;
|
|
||||||
// /*
|
|
||||||
// ImprovedNoise noise;
|
|
||||||
// for (int i = 0; i < 16; ++i)
|
|
||||||
// printf("%d\t%f\n", i, noise.grad2(i, 3, 8));
|
|
||||||
// */
|
|
||||||
// }
|
|
||||||
|
|
||||||
if (key == Keyboard::KEY_O) {
|
if (key == Keyboard::KEY_O) {
|
||||||
useAmbientOcclusion = !useAmbientOcclusion;
|
useAmbientOcclusion = !useAmbientOcclusion;
|
||||||
options.ambientOcclusion = useAmbientOcclusion;
|
options.ambientOcclusion = useAmbientOcclusion;
|
||||||
@@ -849,6 +840,7 @@ void Minecraft::tickInput() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifndef PLATFORM_DESKTOP
|
#ifndef PLATFORM_DESKTOP
|
||||||
if (key == 82)
|
if (key == 82)
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ void KeyboardInput::tick( Player* player )
|
|||||||
ya *= 0.3f;
|
ya *= 0.3f;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef RPI
|
#if defined(RPI) || defined(PLATFORM_DESKTOP)
|
||||||
wantUp = jumping;
|
wantUp = jumping;
|
||||||
wantDown = sneaking;
|
wantDown = sneaking;
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user