Keybinding saving improvement
This commit is contained in:
parent
ec1368d90a
commit
a6c2841226
@ -133,6 +133,7 @@
|
||||
<Compile Include="Assets\NewGame.cs" />
|
||||
<Compile Include="Assets\Scripts\SceneManager\SaveDynamicObjects.cs" />
|
||||
<Compile Include="Assets\Scripts\Knockback.cs" />
|
||||
<Compile Include="Assets\ContinueButton.cs" />
|
||||
<Compile Include="Assets\Scripts\REFACTORING\Application\Panel\Chest\SaveChestManager.cs" />
|
||||
<Compile Include="Assets\Scripts\REFACTORING\Application\Shared\Manager\Panel\SceneBaseDataManager.cs" />
|
||||
<Compile Include="Assets\Scripts\DialogueNpcTest.cs" />
|
||||
@ -270,6 +271,7 @@
|
||||
<Compile Include="Assets\Scripts\Pathfinding\Pathfinding.cs" />
|
||||
<Compile Include="Assets\Scripts\Item\PickableController.cs" />
|
||||
<Compile Include="Assets\Scripts\REFACTORING\Application\Chest\SceneChestBuilder.cs" />
|
||||
<Compile Include="Assets\Scripts\REFACTORING\Story\WizardHouse\WizardFirstQuestManager.cs" />
|
||||
<Compile Include="Assets\Scripts\REFACTORING\Application\Shared\Manager\Buildable\SceneObjectBuilder.cs" />
|
||||
<Compile Include="Assets\Scripts\REFACTORING\Application\Mission\Save\SaveMissionManager.cs" />
|
||||
<Compile Include="Assets\Scripts\REFACTORING\Models\Mission\Condition\CollectMissionConditionData.cs" />
|
||||
@ -323,8 +325,6 @@
|
||||
<Compile Include="Assets\Scripts\REFACTORING\Application\Dialogue\MissionDialogue.cs" />
|
||||
<Compile Include="Assets\Scripts\REFACTORING\Application\UI\Panel\TaskPanelController.cs" />
|
||||
<Compile Include="Assets\Scripts\Player.cs" />
|
||||
<Compile Include="Assets\ContinueButton.cs" />
|
||||
<Compile Include="Assets\Scripts\REFACTORING\Story\WizardHouse\WizardFirstQuestManager.cs" />
|
||||
<None Include="Assets\TextMesh Pro\Shaders\TMPro.cginc" />
|
||||
<None Include="Assets\HardLight2D\ReadMe - FAQ.txt" />
|
||||
<None Include="Assets\TextMesh Pro\Shaders\TMP_SDF-Mobile Overlay.shader" />
|
||||
|
@ -60,6 +60,28 @@ public class NewGame : MonoBehaviour
|
||||
PlayerPrefs.SetInt(SkillsPointsManger.PLAYER_SKILS_INTELIGENCE_POINTS, 0); // IntelligencePoints
|
||||
// --------------------------------------------------------------------
|
||||
|
||||
//DEFAULT CONTROLS
|
||||
if (!PlayerPrefs.HasKey("Interact"))
|
||||
{
|
||||
PlayerPrefs.SetString("Interact","E");
|
||||
}
|
||||
if (!PlayerPrefs.HasKey("Attack"))
|
||||
{
|
||||
PlayerPrefs.SetString("Attack","Space");
|
||||
}
|
||||
if (!PlayerPrefs.HasKey("Skills"))
|
||||
{
|
||||
PlayerPrefs.SetString("Skills","U");
|
||||
}
|
||||
if (!PlayerPrefs.HasKey("Inventory"))
|
||||
{
|
||||
PlayerPrefs.SetString("Inventory","I");
|
||||
}
|
||||
if (!PlayerPrefs.HasKey("Settings"))
|
||||
{
|
||||
PlayerPrefs.SetString("Settings","Escape");
|
||||
}
|
||||
// --------------------------------------------------------------------
|
||||
|
||||
//LETTER --------------------------------------------------------------
|
||||
PlayerPrefs.SetInt("PrologueLetter.WhereDisplayed", 0);
|
||||
|
@ -37,7 +37,7 @@ public class KeyBindScript : MonoBehaviour
|
||||
keys.Add("Settings",(KeyCode)System.Enum.Parse(typeof(KeyCode), PlayerPrefs.GetString("Settings","Escape")));
|
||||
keys.Add("Inventory",(KeyCode)System.Enum.Parse(typeof(KeyCode), PlayerPrefs.GetString("Inventory","I")));
|
||||
keys.Add("Skills",(KeyCode)System.Enum.Parse(typeof(KeyCode), PlayerPrefs.GetString("Skills","U")));
|
||||
keys.Add("Attack",(KeyCode)System.Enum.Parse(typeof(KeyCode), PlayerPrefs.GetString("Attack","S6pace")));
|
||||
keys.Add("Attack",(KeyCode)System.Enum.Parse(typeof(KeyCode), PlayerPrefs.GetString("Attack","Space")));
|
||||
|
||||
//Sets the text on the buttons
|
||||
//interaction.text = keys["Interact"].ToString();
|
||||
|
Loading…
Reference in New Issue
Block a user