Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


DrawTexture3DSDF(Texture, float, float, Gradient)

Draws a 3D texture using Signed Distance Field rendering mode in 3D space.
Read time 1 minuteLast updated 10 days ago

Definition

  • Type: Method
  • Namespace: UnityEditor
  • Assembly: UnityEditor.CoreModule
public static void DrawTexture3DSDF(Texture texture, float stepScale = 1, float surfaceOffset = 0, Gradient customColorRamp = null)

Parameters

texture

The volumetric texture to draw.

stepScale

The number by which to multiply the ray step size. The ray step size is the distance between 2 neighboring pixels. The default value is 1.

surfaceOffset

The intensity of the pixels at which the surface is rendered. When this value is positive, Unity will expand the rendered surface. When this value is negative, Unity will render empty space as a surface, and a surface as empty space. The default value is 0.

customColorRamp

The custom gradient that Unity uses as a color ramp. If this is not specified, Unity uses Google Turbo color ramp.

Remarks

This visualization mode supports only non-directional Signed Distance Fields.
3DTextureHandleCorridorSDF (DrawTexture3DSDF(Texture, float, float, Gradient))
Corridor SDF visualized using Google Turbo color ramp.
using UnityEditor;using UnityEngine;[ExecuteInEditMode]public class Reference : MonoBehaviour{ public Texture3D texture; public float stepScale = 1; public float surfaceOffset; public bool useCustomColorRamp; // We should initialize this gradient before using it as a custom color ramp public Gradient customColorRampGradient;}[CanEditMultipleObjects][CustomEditor(typeof(Reference))]public class Handle : Editor{ private void OnSceneViewGUI(SceneView sv) { Object[] objects = targets; foreach (var obj in objects) { Reference reference = obj as Reference; if (reference != null && reference.texture != null) { Handles.matrix = reference.transform.localToWorldMatrix; Handles.DrawTexture3DSDF(reference.texture, reference.stepScale, reference.surfaceOffset, reference.useCustomColorRamp ? reference.customColorRampGradient : null); } } } void OnEnable() { SceneView.duringSceneGui += OnSceneViewGUI; } void OnDisable() { SceneView.duringSceneGui -= OnSceneViewGUI; }}