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
/* | |
* Cosmic Ballet v1.1 | |
* | |
* Inspired by reddit post by u/mtimetraveller | |
* Developed by Phil Gullberg, 2018 - adapted to p5js in 2021 | |
* [email protected] | |
* | |
*/ | |
// SETUP VARS |
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
/* | |
* | |
* SC2272-M4S - RF remote basic test | |
* Demoing single button action using the built in LED | |
* This chip in momentary and returns HIGH as long as a button is pressed on the remote | |
* Phil Gullberg, 2018 - code.wolfandvoid.com | |
* | |
*/ | |
int rfPin = 12; |
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 System.Collections; | |
public class ShuffleArray : MonoBehaviour { | |
// Public so you can fill the array in the inspector | |
public int[] scenarios; | |
void Start () |