Exporting is working and rendering correctly in pcsx-redux
This commit is contained in:
12
Runtime/PSXData.cs
Normal file
12
Runtime/PSXData.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
using System.Collections.Generic;
|
||||
using PSXSplash.RuntimeCode;
|
||||
using UnityEngine;
|
||||
|
||||
[CreateAssetMenu(fileName = "PSXData", menuName = "Scriptable Objects/PSXData")]
|
||||
public class PSXData : ScriptableObject
|
||||
{
|
||||
public Vector2 OutputResolution = new Vector2(320, 240);
|
||||
public bool DualBuffering = true;
|
||||
public bool VerticalBuffering = true;
|
||||
public List<ProhibitedArea> ProhibitedAreas = new List<ProhibitedArea>();
|
||||
}
|
||||
Reference in New Issue
Block a user