Skip to content

Instantly share code, notes, and snippets.

View Derulan's full-sized avatar

Derulan Derulan

  • Earth (I think)
View GitHub Profile
@Derulan
Derulan / UnitMakerHelper.cs
Last active May 25, 2019 19:45
Edited UnitMakerHelper for beginner modders.
using System;
using System.Collections.Generic;
using UnityEngine;
namespace Landfall.TABS
{
// Token: 0x02000465 RID: 1125
public class UMH
{
// Token: 0x06001144 RID: 4420
@Derulan
Derulan / MainLightDataNode.cs
Last active August 19, 2020 04:01
Modified Light Node (OG by @CiroContns on twitter) for Shader Graph 4.9.0
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEditor.ShaderGraph;
using System.Reflection;
[Title("Custom", "Main Light")]
public class MainLightNode : CodeFunctionNode
{
public override bool hasPreview { get { return false; } }