[1] [Nintendo Switch Pro 컨트롤러][1]
[2] [버튼 강조 아이콘의 모습][2]
[3] [Switch의 D패드 강조 아이콘의 모습][3]
[4] [Switch의 스틱 클릭 아이콘의 모습][4]
[5] [Joy-Con 양손잡기][5]
[6] [Joy-Con 가로잡기][6]
[7] [Xbox 컨트롤러와 시리즈 X 컨트롤러][7]
This file contains hidden or 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
| /*: | |
| * | |
| * @plugindesc This plug-in specifies the background image through the style of the body tag. | |
| * @author Creta Park (http://creft.me/cretapark) | |
| * | |
| * @param Default path | |
| * @desc Default top path to select pictures | |
| * @default img/pictures | |
| * | |
| * @param Default file extension name |
This file contains hidden or 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
| Keyframes only : | |
| " . ", | |
| ". . ", | |
| " . . ", | |
| " . . . ", | |
| ". . ... ", | |
| " . .... ", | |
| " ..... ", | |
| " ..... ", | |
| " ..... ", |
This file contains hidden or 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 static class CurveFieldExtensions { | |
| public static readonly MethodInfo M_ShowCurveEditor | |
| = typeof(CurveField).GetMethod("ShowCurveEditor", BindingFlags.NonPublic | BindingFlags.Instance); | |
| public static void ShowCurveEditor(this CurveField self) | |
| => M_ShowCurveEditor.Invoke(self, null); | |
| } |
This file contains hidden or 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
| //StringObfuscator.gmlclass | |
| //This is port of my .NET version of StringObfuscator.cs | |
| //https://gist.github.com/Creta5164/7efb69bb9414a556169a5c8782923a67 | |
| //----------------------------------------------------------------------------- | |
| /// @function StringObfuscator_Convert(textData) | |
| /// @description Make string to obfuscated binary. | |
| /// @param {string} textData String data that convert obfuscated binary. |
This file contains hidden or 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
| function CsvManager(lang) constructor { | |
| //@desc 언어를 다시 불러옵니다. | |
| //@param {string} lang (optional) 다시 불러올 언어 (기본값 = "ko") | |
| static ReloadLanguage = function(lang) { | |
| if (lang == undefined) | |
| lang = "ko"; | |
| var path = "lang/" + lang + "/weapons.csv"; |
This file contains hidden or 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
| 0 | |
| 1 | |
| 2 | |
| 3 | |
| 4 | |
| 5 | |
| 6 | |
| 7 | |
| 8 | |
| 9 |
This file contains hidden or 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
| buttonSouth | |
| buttonNorth | |
| buttonEast | |
| buttonWest | |
| start | |
| select | |
| leftTrigger | |
| rightTrigger | |
| leftShoulder | |
| rightShoulder |
This file contains hidden or 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
| /* Voice reactive image css for streamkit.discord.com/overlay */ | |
| /* Go to voice widget tab, and specify server and voice channel then copy url. */ | |
| /* Modified by Crete Park */ | |
| /* Original CSS : https://retroheart.net/blog/2022/04/adding-discord-voice-reactive-images-to-obs/ */ | |
| :root { | |
| /* Animated bounce movement's maximum height. */ | |
| --bounce-height: 20px; | |
