mirror of
https://github.com/DrBeef/QuestZDoom.git
synced 2024-11-10 15:01:48 +00:00
Ultimate Cheat Menu
also fix yaw glitch on teleport
This commit is contained in:
parent
6070477b17
commit
37fc26e239
9 changed files with 5 additions and 39 deletions
|
@ -1 +0,0 @@
|
|||
QzDoom
|
|
@ -1,8 +1,8 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.drbeef.questzdoom"
|
||||
android:versionCode="7"
|
||||
android:versionName="0.5.0" android:installLocation="auto" >
|
||||
android:versionCode="8"
|
||||
android:versionName="0.5.1" android:installLocation="auto" >
|
||||
|
||||
<!-- Tell the system this app requires OpenGL ES 3.1. -->
|
||||
<uses-feature android:glEsVersion="0x00030001" android:required="true"/>
|
||||
|
|
|
@ -187,7 +187,6 @@ void HandleInput_Default( ovrInputStateTrackedRemote *pDominantTrackedRemoteNew,
|
|||
} else if (pSecondaryTrackedRemoteOld->Joystick.y < 0.7f & ready_teleport) {
|
||||
ready_teleport = false;
|
||||
trigger_teleport = true;
|
||||
resetDoomYaw = true;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1,32 +0,0 @@
|
|||
OptionMenu cheat_Options
|
||||
{
|
||||
Title "Console Cheat Commands"
|
||||
|
||||
StaticText ""
|
||||
Option "Enable Cheats", "allcheats", "OnOff"
|
||||
|
||||
StaticText ""
|
||||
Command "No Clip", "noclip"
|
||||
Command "IDFA", "idfa"
|
||||
Command "IDKFA", "idkfa"
|
||||
Command "IDDQD", "iddqd"
|
||||
Command "POWER-UP", "powerup"
|
||||
|
||||
StaticText ""
|
||||
Command "GOD", "god"
|
||||
Command "GOD2", "god2"
|
||||
Command "BUDDHA", "buddha"
|
||||
Command "BUDDHA2", "buddha2"
|
||||
Command "ANUBIS", "anubis"
|
||||
Command "RESURRECT", "resurrect"
|
||||
|
||||
StaticText ""
|
||||
Command "NO TARGET", "notarget"
|
||||
Command "FLY", "fly"
|
||||
}
|
||||
|
||||
AddOptionMenu OptionsMenu
|
||||
{
|
||||
StaticText ""
|
||||
Submenu "Cheat Commands", cheat_Options
|
||||
}
|
|
@ -212,7 +212,7 @@ static bool CheckSkipGameBlock(FScanner &sc)
|
|||
if (!filter)
|
||||
{
|
||||
SkipSubBlock(sc);
|
||||
return true;
|
||||
return !sc.CheckString("else");
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
@ -41,7 +41,7 @@ const char *GetVersionString();
|
|||
|
||||
/** Lots of different version numbers **/
|
||||
|
||||
#define VERSIONSTR "QuestZDoom-0.5.0 (LZDoom 3.83a)"
|
||||
#define VERSIONSTR "QuestZDoom-0.5.1 (LZDoom 3.83a)"
|
||||
|
||||
// The version as seen in the Windows resource
|
||||
#define RC_FILEVERSION 3,83,1
|
||||
|
|
BIN
assets/mods/Ultimate-Cheat-Menu.zip
Normal file
BIN
assets/mods/Ultimate-Cheat-Menu.zip
Normal file
Binary file not shown.
Binary file not shown.
|
@ -151,7 +151,7 @@ import android.support.v4.content.ContextCompat;
|
|||
copy_asset("/sdcard/QuestZDoom", "res/lights.pk3", true);
|
||||
copy_asset("/sdcard/QuestZDoom", "res/brightmaps.pk3", true);
|
||||
|
||||
copy_asset("/sdcard/QuestZDoom", "mods/cheats-menu.pk3", true);
|
||||
copy_asset("/sdcard/QuestZDoom", "mods/Ultimate-Cheat-Menu.zip", true);
|
||||
copy_asset("/sdcard/QuestZDoom", "mods/laser-sight-0.5.5-vr.pk3", true);
|
||||
|
||||
copy_asset("/sdcard/QuestZDoom/audiopack", "snd_fluidsynth/fluidsynth.sf2", false);
|
||||
|
|
Loading…
Reference in a new issue