scripts
This commit is contained in:
@@ -0,0 +1,130 @@
|
||||
using System;
|
||||
using System.Runtime.CompilerServices;
|
||||
using UnityEngine.Scripting;
|
||||
|
||||
namespace UnityEngine
|
||||
{
|
||||
// Token: 0x0200004B RID: 75
|
||||
public class SkinnedMeshRenderer : Renderer
|
||||
{
|
||||
// Token: 0x17000132 RID: 306
|
||||
// (get) Token: 0x0600057E RID: 1406
|
||||
// (set) Token: 0x0600057F RID: 1407
|
||||
public extern Transform[] bones
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000133 RID: 307
|
||||
// (get) Token: 0x06000580 RID: 1408
|
||||
// (set) Token: 0x06000581 RID: 1409
|
||||
public extern Transform rootBone
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000134 RID: 308
|
||||
// (get) Token: 0x06000582 RID: 1410
|
||||
// (set) Token: 0x06000583 RID: 1411
|
||||
public extern SkinQuality quality
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000135 RID: 309
|
||||
// (get) Token: 0x06000584 RID: 1412
|
||||
// (set) Token: 0x06000585 RID: 1413
|
||||
public extern Mesh sharedMesh
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000136 RID: 310
|
||||
// (get) Token: 0x06000586 RID: 1414
|
||||
// (set) Token: 0x06000587 RID: 1415
|
||||
public extern bool updateWhenOffscreen
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000137 RID: 311
|
||||
// (get) Token: 0x06000588 RID: 1416
|
||||
// (set) Token: 0x06000589 RID: 1417
|
||||
public extern bool skinnedMotionVectors
|
||||
{
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
get;
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
set;
|
||||
}
|
||||
|
||||
// Token: 0x17000138 RID: 312
|
||||
// (get) Token: 0x0600058A RID: 1418 RVA: 0x00008268 File Offset: 0x00006468
|
||||
// (set) Token: 0x0600058B RID: 1419 RVA: 0x00008288 File Offset: 0x00006488
|
||||
public Bounds localBounds
|
||||
{
|
||||
get
|
||||
{
|
||||
Bounds bounds;
|
||||
this.INTERNAL_get_localBounds(out bounds);
|
||||
return bounds;
|
||||
}
|
||||
set
|
||||
{
|
||||
this.INTERNAL_set_localBounds(ref value);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600058C RID: 1420
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private extern void INTERNAL_get_localBounds(out Bounds value);
|
||||
|
||||
// Token: 0x0600058D RID: 1421
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
private extern void INTERNAL_set_localBounds(ref Bounds value);
|
||||
|
||||
// Token: 0x0600058E RID: 1422
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
public extern void BakeMesh(Mesh mesh);
|
||||
|
||||
// Token: 0x0600058F RID: 1423
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
public extern float GetBlendShapeWeight(int index);
|
||||
|
||||
// Token: 0x06000590 RID: 1424
|
||||
[GeneratedByOldBindingsGenerator]
|
||||
[MethodImpl(MethodImplOptions.InternalCall)]
|
||||
public extern void SetBlendShapeWeight(int index, float value);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user