11 lines
274 B
C#
11 lines
274 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using UnityEngine.Rendering;
|
|
|
|
[VolumeComponentMenu("Sample Scene/Outline")]
|
|
public class OutlineVolumeComponent : VolumeComponent
|
|
{
|
|
public BoolParameter Enabled = new BoolParameter(false);
|
|
}
|