エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
【GLSL】UnityのInspector上でレイマーチングはできる - Qiita
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
【GLSL】UnityのInspector上でレイマーチングはできる - Qiita
using UnityEngine; using UnityEditor; using System.Collections; [CustomEditor(typeof(NewBehaviour... using UnityEngine; using UnityEditor; using System.Collections; [CustomEditor(typeof(NewBehaviourScript))] public class NewBehaviourScriptEditor : Editor { private Material material = null; public override bool HasPreviewGUI() { return true; } public override GUIContent GetPreviewTitle() { return new GUIContent("ほげ"); } public override void OnPreviewGUI(Rect r, GUIStyle background) { if (material

