Skip to content

Instantly share code, notes, and snippets.

View Nyxeka's full-sized avatar

Nicholas Hylands Nyxeka

  • Waterloo, ON
View GitHub Profile
@Nyxeka
Nyxeka / BallThrowable.cs
Created October 17, 2017 15:23
Tuck and Roll Ball Mechanic
using System;
using System.Collections;
using System.Collections.Generic;
//using System.Runtime.InteropServices;
using UnityEngine;
public class BallThrowable : MonoBehaviour
{
// throwing ball
@Nyxeka
Nyxeka / BeaconFocusModule.cs
Created October 17, 2017 15:22
Beacon Focus Module
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public struct VisibleMarkable
{
public VisibleMarkable(Vector3 pos, MarkableObject markable, bool markerOn = false)
{
@Nyxeka
Nyxeka / EventTimer.cs
Created October 17, 2017 15:21
Unity Event Timer
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Events;
public class EventTimer : MonoBehaviour {
/////////////////////
//
@Nyxeka
Nyxeka / CharacterCreatorIB.cs
Created October 17, 2017 15:20
Fantastic World Core Scripts
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.EventSystems;
namespace nyxeka
{
public class CharacterCreatorIB : InputBehaviour
{
@Nyxeka
Nyxeka / AIController.cs
Created October 17, 2017 15:15
Mystic Mancers Core Scripts
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[AddComponentMenu("Final Integrated Stuff/AI Controller")]
public class AIController : UnitController {
@Nyxeka
Nyxeka / ImageBrowser.py
Created October 17, 2017 15:12
Python Scripts
import Tkinter as tk
from PIL import Image, ImageTk
import glob, os
# image types we're gonna check for
valid_images = [".jpg",".gif",".png",".tga",".jpeg",".bmp",".webm"]
imageList = []