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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
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
Play this game by pasting the script in http://www.puzzlescript.net/editor.html |
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
======== | |
OBJECTS | |
======== | |
MoveUp | |
white | |
Background | |
black |
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
http://www.puzzlescript.net/play.html?p=5f8b385fc4cd16c8139f |
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
using UnityEngine; | |
using UnityEngine.UI; | |
using System.Collections; | |
using System.Collections.Generic; | |
public abstract class ScriptableObjectSingleton<T> : ScriptableObject where T : ScriptableObject | |
{ | |
private static T _instance; | |
public static T instance | |
{ |
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
using UnityEngine; | |
using UnityEngine.UI; | |
using System.Collections; | |
using System.Collections.Generic; | |
public static class RectTransformBound | |
{ | |
public static void Bound(this RectTransform bounder, | |
RectTransform bounded) | |
{ |
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
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System; | |
using System.Text; | |
namespace MakeGist | |
{ | |
public class Gist |
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
An error occured running the Unity content on this page. See your browser's JavaScript console for more info. The error was: | |
uncaught exception: abort() at jsStackTrace@file:///C:/Users/ragzouken/Documents/BUILDS/kooltool/Release/kooltool.js:992:13 | |
stackTrace@file:///C:/Users/ragzouken/Documents/BUILDS/kooltool/Release/kooltool.js:1009:22 | |
abort@file:///C:/Users/ragzouken/Documents/BUILDS/kooltool/Release/kooltool.js:3340875:25 | |
b132@file:///C:/Users/ragzouken/Documents/BUILDS/kooltool/Release/kooltool.js:3336951:60 | |
__ZN16VirtFuncInvoker1IP2t4P3t10E6InvokeEP10MethodInfoPvS3_ [void undefined<undefined?n?>?o? VirtFuncInvoker1<t10?**, undefined?6?>?k()]@file:///C:/Users/ragzouken/Documents/BUILDS/kooltool/Release/kooltool.js:2459685:8 | |
__Z4m310P3t87P10MethodInfo [m310(MethodInfo?**)]@file:///C:/Users/ragzouken/Documents/BUILDS/kooltool/Release/kooltool.js:2461187:10 | |
__Z18RuntimeInvoker_t40P10MethodInfoPvPS1_ [RuntimeInvoker_t40?1(void**, undefined?S?*)]@file:///C:/Users/ragzouken/Documents/BUILDS/kooltool/Release/k |
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
using UnityEngine; | |
using System.Collections; | |
using System.Collections.Generic; | |
public class SynthTest : MonoBehaviour | |
{ | |
[Range(-8, 8)] | |
public int c = 0; | |
public float beat = 0.2f; |
OlderNewer