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 System.Collections; | |
using System.Collections.Generic; | |
using UnityEngine; | |
public class HexEngine : MonoBehaviour { | |
// http://www.redblobgames.com/grids/hexagons/ | |
// Consider: StaticBatchingUtility.Combine | |
// https://docs.unity3d.com/ScriptReference/StaticBatchingUtility.Combine.html |
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
// RaiseTerrain.cs -- a simple script that raises (or lowers) Unity's built in terrain to be level | |
// with a GameObject's collider(s). | |
// | |
// AUTHOR: Martin "quill18" Glaude -- [email protected] | |
// LICENSE: CC0 | |
// | |
// The latest version will always be available at: https://gist.github.com/quill18/9becf56f685e60109551e034385fd8f9 | |
// | |
using UnityEngine; |
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
// A Reactor Management Script by quill18 (http://quill18.com) | |
// Latest Version: https://gist.github.com/quill18/c4b71d81f9202db11455 | |
// | |
// | |
// Developed for: | |
// Kerbal Space Program 1.04 | |
// kOS 0.17.3 | |
// Near Future Electrical 0.5.3 | |
// | |
// |
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
/* | |
!.gitignore | |
!README.md | |
!/Assets/ | |
!/ProjectSettings/ | |
*.blend1 | |
*.blend2 |
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
// LANDER.KS -- An automated landing script. | |
// | |
// A script for the kOs mod for Kerbal Space Program | |
// by Quill18 (http://youtube.com/quill18) | |
// | |
// Get the latest version here: https://gist.github.com/quill18/bbddb8135cdd84479132 | |
// PHASE 0: Variables and settings | |
// The altitude radar reading is from the center of mass (I think), and not |
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
# Quill18's Simple LootFilter | |
# Author: [email protected] | |
# youtube.com/quill18 | |
# | |
# Get the latest version here: https://gist.github.com/quill18/d811f616d577bed035b4 | |
# | |
# **Installation** | |
# | |
# Copy to: C:\Users\<USERNAME>\Documents\My Games\Path of Exile\ | |
# NOTE: The file MUST have the ".filter" extension. |
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
/// | |
/// Simple pooling for Unity. | |
/// Author: Martin "quill18" Glaude ([email protected]) | |
/// Latest Version: https://gist.github.com/quill18/5a7cfffae68892621267 | |
/// License: CC0 (http://creativecommons.org/publicdomain/zero/1.0/) | |
/// UPDATES: | |
/// 2015-04-16: Changed Pool to use a Stack generic. | |
/// | |
/// Usage: | |
/// |
NewerOlder