This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+100
View File
@@ -0,0 +1,100 @@
using System;
using System.Runtime.CompilerServices;
using UnityEngine.Scripting;
namespace UnityEngine.Video
{
// Token: 0x0200030A RID: 778
public sealed class VideoClip : Object
{
// Token: 0x17000B4B RID: 2891
// (get) Token: 0x060031E7 RID: 12775
public extern string originalPath
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x17000B4C RID: 2892
// (get) Token: 0x060031E8 RID: 12776
public extern ulong frameCount
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x17000B4D RID: 2893
// (get) Token: 0x060031E9 RID: 12777
public extern double frameRate
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x17000B4E RID: 2894
// (get) Token: 0x060031EA RID: 12778
public extern double length
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x17000B4F RID: 2895
// (get) Token: 0x060031EB RID: 12779
public extern uint width
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x17000B50 RID: 2896
// (get) Token: 0x060031EC RID: 12780
public extern uint height
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x17000B51 RID: 2897
// (get) Token: 0x060031ED RID: 12781
public extern ushort audioTrackCount
{
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
get;
}
// Token: 0x060031EE RID: 12782 RVA: 0x0004A11C File Offset: 0x0004831C
public ushort GetAudioChannelCount(ushort audioTrackIdx)
{
return VideoClip.INTERNAL_CALL_GetAudioChannelCount(this, audioTrackIdx);
}
// Token: 0x060031EF RID: 12783
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern ushort INTERNAL_CALL_GetAudioChannelCount(VideoClip self, ushort audioTrackIdx);
// Token: 0x060031F0 RID: 12784 RVA: 0x0004A138 File Offset: 0x00048338
public uint GetAudioSampleRate(ushort audioTrackIdx)
{
return VideoClip.INTERNAL_CALL_GetAudioSampleRate(this, audioTrackIdx);
}
// Token: 0x060031F1 RID: 12785
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
private static extern uint INTERNAL_CALL_GetAudioSampleRate(VideoClip self, ushort audioTrackIdx);
// Token: 0x060031F2 RID: 12786
[GeneratedByOldBindingsGenerator]
[MethodImpl(MethodImplOptions.InternalCall)]
public extern string GetAudioLanguage(ushort audioTrackIdx);
}
}