Skip to content

Instantly share code, notes, and snippets.

@RemyUnity
RemyUnity / CubemapTextureBuilder.cs
Created April 9, 2020 09:03
Unity utility to convert 6 texture to a single cubemap texture
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using System.Linq;
using System.IO;
public class CubemapTextureBuilder : EditorWindow
{
[MenuItem("Tools/Cubemap Builder")]
@nukadelic
nukadelic / EditorFontSize.cs
Last active July 25, 2024 08:24
Unity Editor Font Size Changer -- EditorStyles
#if UNITY_EDITOR
using System.Collections.Generic;
using UnityEngine;
using UnityEditor;
using System.Reflection;
public class EditorFontSize : EditorWindow
{
// enable resize on launch to set a default font size , using this option will disable the ability to have the window accassible
@marcelschmidtdev
marcelschmidtdev / Parable.cs
Created March 30, 2016 00:40
A simple throw parable for Unity
using UnityEngine;
using System.Collections;
public class Parable : MonoBehaviour
{
public Transform Target;
public float firingAngle = 45.0f;
public float gravity = 9.8f;
public Transform Projectile;