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
| ########################################################## | |
| # Custom Blender -> Unity Pipeline | |
| # http://www.mimimi-productions.com, 2014 | |
| # Version: 1.9.M2 | |
| # Only for Blender 2.58 and newer | |
| # | |
| # Thanks to kastoria, jonim8or and Freezy for their support! | |
| # Special thanks to Sebastian hagish Dorda for implementing the sort methods. | |
| # http://www.blenderartists.org | |
| ########################################################## |
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 class BitCrusher : MonoBehaviour | |
| { | |
| [Range (1f,16f)] | |
| public float bits = 16f; | |
| [Range (20f,48000f)] | |
| public float sampleRate = 48000f; | |
| private float phase = 0; | |
| private float last = 0; |
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 UnityEditor; | |
| using System.Collections; | |
| using System; | |
| using System.Linq; | |
| using System.Reflection; | |
| [InitializeOnLoad] | |
| public class RXLookingGlass | |
| { |
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; | |
| public class Bench : MonoBehaviour | |
| { | |
| static public bool SHOULD_DEBUG = true; | |
| static public Color defaultColor = Color.white; |
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 UnityEditor; | |
| using System.IO; | |
| using System.Text.RegularExpressions; | |
| using System.Collections.Generic; | |
| using System.Collections; | |
| using System; | |
| class RXSolutionFixer : AssetPostprocessor | |
| { |
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 UnityEditor; | |
| using System.IO; | |
| using System.Text.RegularExpressions; | |
| using System.Collections.Generic; | |
| using System; | |
| class RXSolutionFixer : AssetPostprocessor |
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 UnityEditor; | |
| using System.Collections; | |
| using System.Collections.Generic; | |
| using System.Reflection; | |
| [CustomEditor (typeof(MonoBehaviour),true)] | |
| [CanEditMultipleObjects] | |
| public class MonoBehaviourInspector : Editor | |
| { |
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 System; | |
| namespace InControl | |
| { | |
| // @cond nodoc | |
| [AutoDiscover] | |
| public class PlayStation4WinProfile : UnityInputDeviceProfile | |
| { | |
| public PlayStation4WinProfile() |
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 UnityEditor; | |
| using System.Collections; | |
| using System.IO; | |
| using System.Text.RegularExpressions; | |
| using System.Collections.Generic; | |
| using System; | |
| class SolutionFixer : AssetPostprocessor |