You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
724 B
24 lines
724 B
#if ENABLE_UPSCALER_FRAMEWORK
|
|
using UnityEngine;
|
|
using UnityEngine.Experimental.Rendering;
|
|
using UnityEngine.Rendering;
|
|
using UnityEngine.Rendering.RenderGraphModule;
|
|
using System;
|
|
|
|
#if UNITY_EDITOR
|
|
using UnityEditor;
|
|
#endif
|
|
|
|
[Serializable]
|
|
public class STPOptions : UpscalerOptions
|
|
{
|
|
// UpscalerOptions contains the injection point option with default value BeforePostProcess.
|
|
//
|
|
// An empty options class like this must be defined & registered if we want to
|
|
// provide the option to change the injection point of the IUpscaler.
|
|
//
|
|
// If no options are defined & registered for an IUpscaler, there won't be a dropdown
|
|
// in the Render Pipeline settings to change the injection point.
|
|
}
|
|
|
|
#endif
|