43 lines
1.1 KiB
C#
43 lines
1.1 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
using UnityEngine;
|
|
|
|
namespace RecRoom.Tools
|
|
{
|
|
// Token: 0x02002AED RID: 10989
|
|
[Token(Token = "0x2002AED")]
|
|
public class MoveableWhiteboard : MonoBehaviour
|
|
{
|
|
// Token: 0x06012466 RID: 74854 RVA: 0x00426248 File Offset: 0x00424448
|
|
[Token(Token = "0x6012466")]
|
|
[Address(RVA = "0x14C0E20", Offset = "0x14BFE20", VA = "0x1814C0E20")]
|
|
private void Awake()
|
|
{
|
|
Tool component = base.GetComponent<Tool>();
|
|
this.tool = component;
|
|
int num = 0;
|
|
if (component != num)
|
|
{
|
|
this.tool.KinematicOnReset = true;
|
|
this.tool.KinematicOnSleep = true;
|
|
this.tool.AlwaysPhysicalPickupOffCenter = true;
|
|
this.tool.IgnorePickupDirection = true;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06012467 RID: 74855 RVA: 0x004262A8 File Offset: 0x004244A8
|
|
[Token(Token = "0x6012467")]
|
|
[Address(RVA = "0x428AD0", Offset = "0x427AD0", VA = "0x180428AD0")]
|
|
public MoveableWhiteboard()
|
|
{
|
|
}
|
|
|
|
// Token: 0x0400BC27 RID: 48167
|
|
[FieldOffset(Offset = "0x18")]
|
|
[Token(Token = "0x400BC27")]
|
|
[SerializeField]
|
|
[NKNLDEIPALE(FHBJCBPFODN.Self, false, false, false)]
|
|
private Tool tool;
|
|
}
|
|
}
|