Initialer Upload neues Unity-Projekt

This commit is contained in:
Daniel Ocks
2025-07-21 09:11:14 +02:00
commit eeca72985b
14558 changed files with 1508140 additions and 0 deletions

View File

@ -0,0 +1,28 @@
// This file was @generated with LibOVRPlatform/codegen/main. Do not modify it!
namespace Oculus.Platform
{
using Description = System.ComponentModel.DescriptionAttribute;
public enum AbuseReportVideoMode : int
{
[Description("UNKNOWN")]
Unknown,
/// The UI will collect video evidence if the object_type supports it.
[Description("COLLECT")]
Collect,
/// The UI will try to collect video evidence if the object_type supports it,
/// but will allow the user to skip that step if they wish.
[Description("OPTIONAL")]
Optional,
/// The UI will not collect video evidence.
[Description("SKIP")]
Skip,
}
}