This commit is contained in:
niko
2026-04-08 23:40:05 +02:00
parent d6894bcbc7
commit 18dc73f922
7750 changed files with 1795369 additions and 0 deletions
@@ -0,0 +1,76 @@
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using CircuitsV2.Protobuf;
using Cpp2IlInjected;
using UnityEngine;
namespace CircuitsV2.Graph.Payload
{
// Token: 0x020002E1 RID: 737
[Token(Token = "0x20001E9")]
[StructLayout(3)]
public sealed class SetNodeTransformPayload
{
// Token: 0x1700051E RID: 1310
// (get) Token: 0x060018F8 RID: 6392 RVA: 0x0000C05C File Offset: 0x0000A25C
[Token(Token = "0x170004FF")]
public Guid ContextId
{
[Token(Token = "0x6001473")]
[Address(RVA = "0xE6BDC0", Offset = "0xE6A7C0", VA = "0x180E6BDC0")]
[CompilerGenerated]
get
{
return default(Guid);
}
}
// Token: 0x1700051F RID: 1311
// (get) Token: 0x060018F9 RID: 6393 RVA: 0x0000C074 File Offset: 0x0000A274
[Token(Token = "0x17000500")]
public Guid NodeId
{
[Token(Token = "0x6001474")]
[Address(RVA = "0x75DFF0", Offset = "0x75C9F0", VA = "0x18075DFF0")]
[CompilerGenerated]
get
{
return default(Guid);
}
}
// Token: 0x060018FA RID: 6394 RVA: 0x00002096 File Offset: 0x00000296
[Token(Token = "0x6001475")]
[Address(RVA = "0x21BC1D0", Offset = "0x21BABD0", VA = "0x1821BC1D0")]
private SetNodeTransformPayload(Guid contextId, Guid nodeId, in Vector3? localSpacePosition, in Quaternion? localSpaceRotation)
{
}
// Token: 0x060018FB RID: 6395 RVA: 0x00002098 File Offset: 0x00000298
[Token(Token = "0x6001476")]
[Address(RVA = "0x21BC650", Offset = "0x21BB050", VA = "0x1821BC650")]
public static ActionData NewAction(Guid contextId, Guid nodeId, in Vector3? localSpacePosition, in Quaternion? localSpaceRotation)
{
return null;
}
// Token: 0x060018FC RID: 6396 RVA: 0x00002098 File Offset: 0x00000298
[Token(Token = "0x6001477")]
[Address(RVA = "0x21BC4A0", Offset = "0x21BAEA0", VA = "0x1821BC4A0")]
public static ReduceAction<SetNodeTransformPayload> FromAction(ActionData actionData)
{
return null;
}
// Token: 0x040009B8 RID: 2488
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
[Token(Token = "0x4000762")]
public readonly Vector3? LocalSpacePosition;
// Token: 0x040009B9 RID: 2489
[global::Cpp2IlInjected.FieldOffset(Offset = "0x40")]
[Token(Token = "0x4000763")]
public readonly Quaternion? LocalSpaceRotation;
}
}