View bundle.sh
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
#!/bin/bash | |
readonly java_path='java' | |
readonly output_path='build' | |
readonly email='my@email.com' | |
readonly auth_key='my_key' | |
readonly texture_compresstion='false' | |
readonly andr_key_path='key.pk8' | |
readonly andr_cert_path='certificate.pem' | |
View .luacheckrc
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
std = "max" | |
files['.luacheckrc'].global = false | |
unused_args = false | |
globals = { | |
"sys", | |
"go", | |
"gui", | |
"label", | |
"render", |
View swipe_mouse.lua
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
local beginX | |
local beginY | |
local endX | |
local endY | |
local startTime = 0 | |
local xDistance | |
local yDistance |
View swipe.lua
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
local beginX | |
local beginY | |
local endX | |
local endY | |
local startTime | |
local xDistance | |
local yDistance |
View CustomEditorBase.cs
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 UnityEditor; | |
using UnityEditorInternal; | |
using System.Collections.Generic; | |
using UnityEditor.AnimatedValues; | |
[CustomEditor(typeof(UnityEngine.Object), true, isFallback = true)] | |
[CanEditMultipleObjects] | |
public class CustomEditorBase : Editor | |
{ |
View HaxeReinstall
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
#!/bin/sh | |
set -e | |
rm -rf /usr/local/bin/neko | |
rm -rf /usr/local/bin/nekoc | |
rm -rf /usr/local/lib/neko | |
rm -rf /usr/local/lib/libneko.dylib | |
rm -rf /usr/local/bin/haxe | |
rm -rf /usr/local/bin/nekotools | |
rm -rf /usr/local/bin/haxelib |
View DrawState.hx
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
import flixel.addons.nape.FlxNapeSprite; | |
import flixel.addons.nape.FlxNapeState; | |
import flixel.FlxCamera; | |
import flixel.FlxG; | |
import flixel.ui.FlxButton; | |
import flixel.util.FlxColor; | |
import flixel.util.FlxMath; | |
import flixel.util.FlxPoint; | |
import flixel.util.FlxSpriteUtil; | |
import Math; |
NewerOlder