mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-19 23:03:51 +02:00
Merge overlays, move overlay to separate process (#44)
* refactor: merge two overlay offScreenBrowser into one * Electron support for shared overlay * Separate overlay into its own process * fix: invalid overlay texture size * Handle duplicate processes * Remove logging --------- Co-authored-by: pa <maplenagisa@gmail.com> Co-authored-by: rs189 <35667100+rs189@users.noreply.github.com>
This commit is contained in:
17
Dotnet/Overlay/AppApiVrCommon.cs
Normal file
17
Dotnet/Overlay/AppApiVrCommon.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace VRCX;
|
||||
|
||||
public abstract partial class AppApiVr
|
||||
{
|
||||
public static AppApiVr Instance;
|
||||
public abstract void Init();
|
||||
public abstract void VrInit();
|
||||
public abstract void ToggleSystemMonitor(bool enabled);
|
||||
public abstract float CpuUsage();
|
||||
public abstract string[][] GetVRDevices();
|
||||
public abstract double GetUptime();
|
||||
public abstract string CurrentCulture();
|
||||
public abstract string CustomVrScript();
|
||||
public abstract List<KeyValuePair<string, string>> GetExecuteVrOverlayFunctionQueue();
|
||||
}
|
||||
Reference in New Issue
Block a user