├── .gitignore ├── Configs ├── Default.config.gmx └── Default │ ├── Android │ ├── icons │ │ ├── icon_hdpi.png │ │ ├── icon_ldpi.png │ │ ├── icon_mdpi.png │ │ ├── icon_xhdpi.png │ │ ├── icon_xxhdpi.png │ │ ├── icon_xxxhdpi.png │ │ └── ouyaIcon.png │ ├── portrait_splash.png │ └── splash.png │ ├── Linux │ ├── icon64.png │ └── splash.png │ ├── Mac │ ├── icon512.png │ └── splash.png │ ├── Windows8 │ ├── Win8NativeRunner_TemporaryKey.pfx │ ├── Windows8_TemporaryKey.pfx │ ├── logos │ │ ├── logo150.png │ │ ├── logo30.png │ │ ├── logo310.png │ │ └── logo50.png │ └── splashscreen.png │ └── windows │ ├── License.txt │ ├── RunnerInstaller.nsi │ ├── Runner_Icon_256.ico │ ├── Runner_finish.bmp │ ├── Runner_header.bmp │ ├── runner_icon.ico │ └── splash.png ├── GameMakerChromaExtension.project.gmx ├── README.md ├── datafiles ├── CChromaEditorLibrary.dll ├── Fire_ChromaLink.chroma ├── Fire_Headset.chroma ├── Fire_Keyboard.chroma ├── Fire_Keypad.chroma ├── Fire_Mouse.chroma ├── Fire_Mousepad.chroma ├── KeyboardCoolFireAnimation.chroma ├── KeyboardParticleAnimation.chroma ├── KeyboardParticleAnimation2.chroma ├── Random_ChromaLink.chroma ├── Random_Headset.chroma ├── Random_Keyboard.chroma ├── Random_Keypad.chroma ├── Random_Mouse.chroma └── Random_Mousepad.chroma ├── extensions ├── ChromaSDK.extension.gmx └── ChromaSDK │ └── Assets │ └── datafiles │ └── CChromaEditorLibrary.dll ├── help.rtf ├── images ├── image_1.png ├── image_2.png ├── image_3.png ├── image_4.png ├── image_5.png ├── image_6.png ├── image_7.png └── image_8.png ├── objects ├── ObjectChromaSDK.object.gmx └── ObjectHandleInput.object.gmx ├── rooms └── ExampleRoom.room.gmx └── scripts ├── ScriptAnimateOnKeyRelease.gml ├── ScriptChromaCloseAnimationName.gml ├── ScriptChromaCloseComposite.gml ├── ScriptChromaCopyKeyColorName.gml ├── ScriptChromaGet1DColorName.gml ├── ScriptChromaGet2DColorName.gml ├── ScriptChromaGetCurrentFrameName.gml ├── ScriptChromaGetDeviceName.gml ├── ScriptChromaGetDeviceTypeName.gml ├── ScriptChromaGetFrameCountName.gml ├── ScriptChromaGetKeyColorName.gml ├── ScriptChromaGetMaxColumn.gml ├── ScriptChromaGetMaxLeds.gml ├── ScriptChromaGetMaxRow.gml ├── ScriptChromaInit.gml ├── ScriptChromaOpenEditorDialog.gml ├── ScriptChromaPauseAnimationName.gml ├── ScriptChromaPlayAnimationFrameName.gml ├── ScriptChromaPlayAnimationName.gml ├── ScriptChromaPlayComposite.gml ├── ScriptChromaResumeAnimationName.gml ├── ScriptChromaSet1DColorName.gml ├── ScriptChromaSet2DColorName.gml ├── ScriptChromaSetCurrentFrameName.gml ├── ScriptChromaSetKeyColorName.gml ├── ScriptChromaStopComposite.gml ├── ScriptChromaUninit.gml ├── ScriptDrawUI.gml ├── ScriptGlobals.gml └── ScriptToBGRInt.gml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/.gitignore -------------------------------------------------------------------------------- /Configs/Default.config.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default.config.gmx -------------------------------------------------------------------------------- /Configs/Default/Android/icons/icon_hdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Android/icons/icon_hdpi.png -------------------------------------------------------------------------------- /Configs/Default/Android/icons/icon_ldpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Android/icons/icon_ldpi.png -------------------------------------------------------------------------------- /Configs/Default/Android/icons/icon_mdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Android/icons/icon_mdpi.png -------------------------------------------------------------------------------- /Configs/Default/Android/icons/icon_xhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Android/icons/icon_xhdpi.png -------------------------------------------------------------------------------- /Configs/Default/Android/icons/icon_xxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Android/icons/icon_xxhdpi.png -------------------------------------------------------------------------------- /Configs/Default/Android/icons/icon_xxxhdpi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Android/icons/icon_xxxhdpi.png -------------------------------------------------------------------------------- /Configs/Default/Android/icons/ouyaIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Android/icons/ouyaIcon.png -------------------------------------------------------------------------------- /Configs/Default/Android/portrait_splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Android/portrait_splash.png -------------------------------------------------------------------------------- /Configs/Default/Android/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Android/splash.png -------------------------------------------------------------------------------- /Configs/Default/Linux/icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Linux/icon64.png -------------------------------------------------------------------------------- /Configs/Default/Linux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Linux/splash.png -------------------------------------------------------------------------------- /Configs/Default/Mac/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Mac/icon512.png -------------------------------------------------------------------------------- /Configs/Default/Mac/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Mac/splash.png -------------------------------------------------------------------------------- /Configs/Default/Windows8/Win8NativeRunner_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Windows8/Win8NativeRunner_TemporaryKey.pfx -------------------------------------------------------------------------------- /Configs/Default/Windows8/Windows8_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Windows8/Windows8_TemporaryKey.pfx -------------------------------------------------------------------------------- /Configs/Default/Windows8/logos/logo150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Windows8/logos/logo150.png -------------------------------------------------------------------------------- /Configs/Default/Windows8/logos/logo30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Windows8/logos/logo30.png -------------------------------------------------------------------------------- /Configs/Default/Windows8/logos/logo310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Windows8/logos/logo310.png -------------------------------------------------------------------------------- /Configs/Default/Windows8/logos/logo50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Windows8/logos/logo50.png -------------------------------------------------------------------------------- /Configs/Default/Windows8/splashscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/Windows8/splashscreen.png -------------------------------------------------------------------------------- /Configs/Default/windows/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/windows/License.txt -------------------------------------------------------------------------------- /Configs/Default/windows/RunnerInstaller.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/windows/RunnerInstaller.nsi -------------------------------------------------------------------------------- /Configs/Default/windows/Runner_Icon_256.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/windows/Runner_Icon_256.ico -------------------------------------------------------------------------------- /Configs/Default/windows/Runner_finish.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/windows/Runner_finish.bmp -------------------------------------------------------------------------------- /Configs/Default/windows/Runner_header.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/windows/Runner_header.bmp -------------------------------------------------------------------------------- /Configs/Default/windows/runner_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/windows/runner_icon.ico -------------------------------------------------------------------------------- /Configs/Default/windows/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/Configs/Default/windows/splash.png -------------------------------------------------------------------------------- /GameMakerChromaExtension.project.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/GameMakerChromaExtension.project.gmx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/README.md -------------------------------------------------------------------------------- /datafiles/CChromaEditorLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/CChromaEditorLibrary.dll -------------------------------------------------------------------------------- /datafiles/Fire_ChromaLink.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Fire_ChromaLink.chroma -------------------------------------------------------------------------------- /datafiles/Fire_Headset.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Fire_Headset.chroma -------------------------------------------------------------------------------- /datafiles/Fire_Keyboard.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Fire_Keyboard.chroma -------------------------------------------------------------------------------- /datafiles/Fire_Keypad.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Fire_Keypad.chroma -------------------------------------------------------------------------------- /datafiles/Fire_Mouse.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Fire_Mouse.chroma -------------------------------------------------------------------------------- /datafiles/Fire_Mousepad.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Fire_Mousepad.chroma -------------------------------------------------------------------------------- /datafiles/KeyboardCoolFireAnimation.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/KeyboardCoolFireAnimation.chroma -------------------------------------------------------------------------------- /datafiles/KeyboardParticleAnimation.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/KeyboardParticleAnimation.chroma -------------------------------------------------------------------------------- /datafiles/KeyboardParticleAnimation2.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/KeyboardParticleAnimation2.chroma -------------------------------------------------------------------------------- /datafiles/Random_ChromaLink.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Random_ChromaLink.chroma -------------------------------------------------------------------------------- /datafiles/Random_Headset.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Random_Headset.chroma -------------------------------------------------------------------------------- /datafiles/Random_Keyboard.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Random_Keyboard.chroma -------------------------------------------------------------------------------- /datafiles/Random_Keypad.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Random_Keypad.chroma -------------------------------------------------------------------------------- /datafiles/Random_Mouse.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Random_Mouse.chroma -------------------------------------------------------------------------------- /datafiles/Random_Mousepad.chroma: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/datafiles/Random_Mousepad.chroma -------------------------------------------------------------------------------- /extensions/ChromaSDK.extension.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/extensions/ChromaSDK.extension.gmx -------------------------------------------------------------------------------- /extensions/ChromaSDK/Assets/datafiles/CChromaEditorLibrary.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/extensions/ChromaSDK/Assets/datafiles/CChromaEditorLibrary.dll -------------------------------------------------------------------------------- /help.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/help.rtf -------------------------------------------------------------------------------- /images/image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/images/image_1.png -------------------------------------------------------------------------------- /images/image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/images/image_2.png -------------------------------------------------------------------------------- /images/image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/images/image_3.png -------------------------------------------------------------------------------- /images/image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/images/image_4.png -------------------------------------------------------------------------------- /images/image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/images/image_5.png -------------------------------------------------------------------------------- /images/image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/images/image_6.png -------------------------------------------------------------------------------- /images/image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/images/image_7.png -------------------------------------------------------------------------------- /images/image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/images/image_8.png -------------------------------------------------------------------------------- /objects/ObjectChromaSDK.object.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/objects/ObjectChromaSDK.object.gmx -------------------------------------------------------------------------------- /objects/ObjectHandleInput.object.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/objects/ObjectHandleInput.object.gmx -------------------------------------------------------------------------------- /rooms/ExampleRoom.room.gmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/rooms/ExampleRoom.room.gmx -------------------------------------------------------------------------------- /scripts/ScriptAnimateOnKeyRelease.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptAnimateOnKeyRelease.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaCloseAnimationName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaCloseAnimationName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaCloseComposite.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaCloseComposite.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaCopyKeyColorName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaCopyKeyColorName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaGet1DColorName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaGet1DColorName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaGet2DColorName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaGet2DColorName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaGetCurrentFrameName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaGetCurrentFrameName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaGetDeviceName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaGetDeviceName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaGetDeviceTypeName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaGetDeviceTypeName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaGetFrameCountName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaGetFrameCountName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaGetKeyColorName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaGetKeyColorName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaGetMaxColumn.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaGetMaxColumn.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaGetMaxLeds.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaGetMaxLeds.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaGetMaxRow.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaGetMaxRow.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaInit.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaInit.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaOpenEditorDialog.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaOpenEditorDialog.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaPauseAnimationName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaPauseAnimationName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaPlayAnimationFrameName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaPlayAnimationFrameName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaPlayAnimationName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaPlayAnimationName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaPlayComposite.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaPlayComposite.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaResumeAnimationName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaResumeAnimationName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaSet1DColorName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaSet1DColorName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaSet2DColorName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaSet2DColorName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaSetCurrentFrameName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaSetCurrentFrameName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaSetKeyColorName.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaSetKeyColorName.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaStopComposite.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaStopComposite.gml -------------------------------------------------------------------------------- /scripts/ScriptChromaUninit.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptChromaUninit.gml -------------------------------------------------------------------------------- /scripts/ScriptDrawUI.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptDrawUI.gml -------------------------------------------------------------------------------- /scripts/ScriptGlobals.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptGlobals.gml -------------------------------------------------------------------------------- /scripts/ScriptToBGRInt.gml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/razerofficial/GameMakerChromaExtension/HEAD/scripts/ScriptToBGRInt.gml --------------------------------------------------------------------------------