Skip to content

Instantly share code, notes, and snippets.

View RadonRaph's full-sized avatar

Horion Raphael RadonRaph

View GitHub Profile
@RadonRaph
RadonRaph / readme.txt
Created October 16, 2019 11:32
City Worker (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@RadonRaph
RadonRaph / readme.txt
Created October 16, 2019 08:01
My Game (PuzzleScript Script)
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
@RadonRaph
RadonRaph / readme.txt
Created October 11, 2019 15:30
Untitled PuzzleScript Script
Play this game by pasting the script in http://www.puzzlescript.net/editor.html
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
public class DynamicLight : MonoBehaviour
{
public float angle = 360;
public int precision = 720;
using System.Collections;
using System.Collections.Generic;
using UnityEditor;
using UnityEngine;
public class DynamicLight : MonoBehaviour
{
public int precision;
@RadonRaph
RadonRaph / Walkabout.cs
Created November 19, 2018 13:18 — forked from Bradshaw/Walkabout.cs
BG1-A
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Walkabout : MonoBehaviour {
public float acceleration = 1;
public float friction;
public float radius;
Vector3 velocity;