Skip to content

Instantly share code, notes, and snippets.

@zhaogd233
zhaogd233 / DebugNode.hlsl
Last active August 25, 2022 03:21 — forked from bestknighter/DebugNode.hlsl
打印输出value到color. custom function node code for Unity ShaderGraph/ shader, aware of +Inf/-Inf and nan
// This gist can be found at https://gist.github.com/bestknighter/660e6a53cf6a6643618d8531f962be2c
// I modified Aras Pranckevičius's awesome shader code to be able to handle Infinite and Not A Number numbers
// Quick try at doing a "print value" node for Unity ShaderGraph.
// Tested on Unity 2019.4.34f1 with ShaderGraph 7.3.1.
//
// Use with CustomFunction node, with two inputs:
// - Vector1 Value, the value to display,
// - Vector2 UV, the UVs of area to display at.
@zhaogd233
zhaogd233 / SlicedFilledImage.cs
Last active June 24, 2022 13:00 — forked from yasirkula/SlicedFilledImage.cs
Combining UI Image's Sliced+Filled features together in Unity 修复九宫格进度条的错误表现,九宫格是拉伸中间,但应该是像mask 那样去显示出来
using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
#if UNITY_2017_4 || UNITY_2018_2_OR_NEWER
using UnityEngine.U2D;
#endif
using Sprites = UnityEngine.Sprites;
#if UNITY_EDITOR
@zhaogd233
zhaogd233 / findEditorType.cs
Created December 6, 2021 06:29
[find editor script Name] #c#
Editor meshEditor = Editor.CreateEditor(Selection.activeObject);
Logger.Log($"{meshEditor.GetType().Name}");