This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
choco install -y --ignore-checksums | |
nvidia-display-driver | |
speccy | |
OpenHardwareMonitor | |
brave | |
steam | |
sharex | |
slack | |
discord | |
notion |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
// put this in %APPDATA%\..\Roaming\Sublime Text 3\Packages\User | |
"extensions": | |
[ | |
"jai" | |
] | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// custom build command keybinds for user settings | |
// { "keys": ["ctrl+j"], "command": "build", }, | |
// { "keys": ["ctrl+shift+j"], "command": "build", "args": { "variant": "run" } }, | |
//"target": "jai_build", // not sure how it works but it makes the build not run | |
//"selector": "source.jai", // doesnt seem to work | |
"file_patterns": ["*.jai"] , | |
"shell": true, | |
"cmd": [ "jai.exe", "${file_name}" ], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using TMPro; | |
public class LocalizationDynamic | |
: MonoBehaviour | |
{ | |
public string key; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
#if UNITY_EDITOR | |
using UnityEditor; | |
public static class LocalizationEditorMenu | |
{ | |
[MenuItem("Custom/Localization Quick Import")] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class AStarReference | |
{ | |
public class PathNode | |
{ | |
public Vector3Int coord; | |
public float f; | |
public float g; | |
public float h; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.IO; | |
using System.Collections.Generic; | |
using UnityEngine; | |
// have a list of sprites | |
// with a list of sprite config | |
#if UNITY_EDITOR | |
using UnityEditor; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.SceneManagement; | |
public class AutoSceneAdditiveLoad | |
: MonoBehaviour | |
{ | |
public Object sceneObj; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
#if UNITY_EDITOR | |
using UnityEditor; | |
public static class RebuildRunHelper | |
{ | |
public enum RebuildStage | |
{ | |
None, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using System.Collections.Generic; | |
#if UNITY_EDITOR | |
using UnityEditor; | |
public static class InlineInspector | |
{ | |
private static Vector2 scroll; |
NewerOlder