scripts
This commit is contained in:
@@ -0,0 +1,424 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
|
||||
namespace RecRoom.CircuitsV2.Config
|
||||
{
|
||||
// Token: 0x0200235D RID: 9053
|
||||
[Token(Token = "0x200235D")]
|
||||
[Serializable]
|
||||
[StructLayout(3)]
|
||||
public sealed class ChipConfig
|
||||
{
|
||||
// Token: 0x17002A2F RID: 10799
|
||||
// (get) Token: 0x0600FA9E RID: 64158 RVA: 0x003B00F8 File Offset: 0x003AE2F8
|
||||
[Token(Token = "0x17002A2F")]
|
||||
public IReadOnlyList<Mesh> Meshes
|
||||
{
|
||||
[Token(Token = "0x600FA9E")]
|
||||
[Address(RVA = "0x3C39A0", Offset = "0x3C23A0", VA = "0x1803C39A0")]
|
||||
get
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (0600FA9E)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Collections.Generic.IReadOnlyList`1<UnityEngine.Mesh> RecRoom.CircuitsV2.Config.ChipConfig::get_Meshes()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{
|
||||
Block_0:
|
||||
stloc:class [UnityEngine.CoreModule]UnityEngine.Mesh[](var_0_06, ldfld:class [UnityEngine.CoreModule]UnityEngine.Mesh[](ChipConfig::meshes, ldloc:ChipConfig(this)))
|
||||
}
|
||||
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
||||
--- End of inner exception stack trace ---
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
||||
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
|
||||
*/;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A30 RID: 10800
|
||||
// (get) Token: 0x0600FA9F RID: 64159 RVA: 0x003B010C File Offset: 0x003AE30C
|
||||
[Token(Token = "0x17002A30")]
|
||||
public float TitleTextY
|
||||
{
|
||||
[Token(Token = "0x600FA9F")]
|
||||
[Address(RVA = "0x57B900", Offset = "0x57A300", VA = "0x18057B900")]
|
||||
get
|
||||
{
|
||||
return this.titleTextY;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A31 RID: 10801
|
||||
// (get) Token: 0x0600FAA0 RID: 64160 RVA: 0x003B0120 File Offset: 0x003AE320
|
||||
[Token(Token = "0x17002A31")]
|
||||
public float SelfPortY
|
||||
{
|
||||
[Token(Token = "0x600FAA0")]
|
||||
[Address(RVA = "0x566EB0", Offset = "0x5658B0", VA = "0x180566EB0")]
|
||||
get
|
||||
{
|
||||
return this.selfPortY;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A32 RID: 10802
|
||||
// (get) Token: 0x0600FAA1 RID: 64161 RVA: 0x003B0134 File Offset: 0x003AE334
|
||||
[Token(Token = "0x17002A32")]
|
||||
public float FirstPortY
|
||||
{
|
||||
[Token(Token = "0x600FAA1")]
|
||||
[Address(RVA = "0x4D2500", Offset = "0x4D0F00", VA = "0x1804D2500")]
|
||||
get
|
||||
{
|
||||
return this.firstPortY;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A33 RID: 10803
|
||||
// (get) Token: 0x0600FAA2 RID: 64162 RVA: 0x003B0148 File Offset: 0x003AE348
|
||||
[Token(Token = "0x17002A33")]
|
||||
public float TitleTextXMargin
|
||||
{
|
||||
[Token(Token = "0x600FAA2")]
|
||||
[Address(RVA = "0x58B870", Offset = "0x58A270", VA = "0x18058B870")]
|
||||
get
|
||||
{
|
||||
return this.titleTextXMargin;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A34 RID: 10804
|
||||
// (get) Token: 0x0600FAA3 RID: 64163 RVA: 0x003B015C File Offset: 0x003AE35C
|
||||
[Token(Token = "0x17002A34")]
|
||||
public float TitleTextLeftMargin
|
||||
{
|
||||
[Token(Token = "0x600FAA3")]
|
||||
[Address(RVA = "0x468030", Offset = "0x466A30", VA = "0x180468030")]
|
||||
get
|
||||
{
|
||||
return this.titleTextLeftMargin;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A35 RID: 10805
|
||||
// (get) Token: 0x0600FAA4 RID: 64164 RVA: 0x003B0170 File Offset: 0x003AE370
|
||||
[Token(Token = "0x17002A35")]
|
||||
public float TitleTextRightMargin
|
||||
{
|
||||
[Token(Token = "0x600FAA4")]
|
||||
[Address(RVA = "0x468020", Offset = "0x466A20", VA = "0x180468020")]
|
||||
get
|
||||
{
|
||||
return this.titleTextRightMargin;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A36 RID: 10806
|
||||
// (get) Token: 0x0600FAA5 RID: 64165 RVA: 0x003B0184 File Offset: 0x003AE384
|
||||
[Token(Token = "0x17002A36")]
|
||||
public float PortXInset
|
||||
{
|
||||
[Token(Token = "0x600FAA5")]
|
||||
[Address(RVA = "0x467C00", Offset = "0x466600", VA = "0x180467C00")]
|
||||
get
|
||||
{
|
||||
return this.portXInset;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A37 RID: 10807
|
||||
// (get) Token: 0x0600FAA6 RID: 64166 RVA: 0x003B0198 File Offset: 0x003AE398
|
||||
[Token(Token = "0x17002A37")]
|
||||
public float PortTextXSpaceBetween
|
||||
{
|
||||
[Token(Token = "0x600FAA6")]
|
||||
[Address(RVA = "0x467D00", Offset = "0x466700", VA = "0x180467D00")]
|
||||
get
|
||||
{
|
||||
return this.portTextXSpaceBetween;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A38 RID: 10808
|
||||
// (get) Token: 0x0600FAA7 RID: 64167 RVA: 0x003B01AC File Offset: 0x003AE3AC
|
||||
[Token(Token = "0x17002A38")]
|
||||
public float MinInputPortWidth
|
||||
{
|
||||
[Token(Token = "0x600FAA7")]
|
||||
[Address(RVA = "0x621DA0", Offset = "0x6207A0", VA = "0x180621DA0")]
|
||||
get
|
||||
{
|
||||
return this.minInputPortWidth;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A39 RID: 10809
|
||||
// (get) Token: 0x0600FAA8 RID: 64168 RVA: 0x003B01C0 File Offset: 0x003AE3C0
|
||||
[Token(Token = "0x17002A39")]
|
||||
public float MinOutputPortWidth
|
||||
{
|
||||
[Token(Token = "0x600FAA8")]
|
||||
[Address(RVA = "0x621D80", Offset = "0x620780", VA = "0x180621D80")]
|
||||
get
|
||||
{
|
||||
return this.minOutputPortWidth;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A3A RID: 10810
|
||||
// (get) Token: 0x0600FAA9 RID: 64169 RVA: 0x003B01D4 File Offset: 0x003AE3D4
|
||||
[Token(Token = "0x17002A3A")]
|
||||
public float NoPortsYAdjustment
|
||||
{
|
||||
[Token(Token = "0x600FAA9")]
|
||||
[Address(RVA = "0x621D90", Offset = "0x620790", VA = "0x180621D90")]
|
||||
get
|
||||
{
|
||||
return this.noPortsYAdjustment;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A3B RID: 10811
|
||||
// (get) Token: 0x0600FAAA RID: 64170 RVA: 0x003B01E8 File Offset: 0x003AE3E8
|
||||
[Token(Token = "0x17002A3B")]
|
||||
public float AnyPortsYAdjustment
|
||||
{
|
||||
[Token(Token = "0x600FAAA")]
|
||||
[Address(RVA = "0x5CCC80", Offset = "0x5CB680", VA = "0x1805CCC80")]
|
||||
get
|
||||
{
|
||||
return this.anyPortsYAdjustment;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A3C RID: 10812
|
||||
// (get) Token: 0x0600FAAB RID: 64171 RVA: 0x003B01FC File Offset: 0x003AE3FC
|
||||
[Token(Token = "0x17002A3C")]
|
||||
public float MinHeight
|
||||
{
|
||||
[Token(Token = "0x600FAAB")]
|
||||
[Address(RVA = "0x566E10", Offset = "0x565810", VA = "0x180566E10")]
|
||||
get
|
||||
{
|
||||
return this.minHeight;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A3D RID: 10813
|
||||
// (get) Token: 0x0600FAAC RID: 64172 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A3D")]
|
||||
public Vector3 AxisOffset
|
||||
{
|
||||
[Token(Token = "0x600FAAC")]
|
||||
[Address(RVA = "0x1215010", Offset = "0x1213A10", VA = "0x181215010")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A3E RID: 10814
|
||||
// (get) Token: 0x0600FAAD RID: 64173 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A3E")]
|
||||
public Vector3 AxisMargin
|
||||
{
|
||||
[Token(Token = "0x600FAAD")]
|
||||
[Address(RVA = "0x11BC120", Offset = "0x11BAB20", VA = "0x1811BC120")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A3F RID: 10815
|
||||
// (get) Token: 0x0600FAAE RID: 64174 RVA: 0x003B0210 File Offset: 0x003AE410
|
||||
[Token(Token = "0x17002A3F")]
|
||||
public bool OverrideInnerContextIconTopRightMargin
|
||||
{
|
||||
[Token(Token = "0x600FAAE")]
|
||||
[Address(RVA = "0x12D8FB0", Offset = "0x12D79B0", VA = "0x1812D8FB0")]
|
||||
get
|
||||
{
|
||||
return this.overrideInnerContextIconTopRightMargin;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A40 RID: 10816
|
||||
// (get) Token: 0x0600FAAF RID: 64175 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A40")]
|
||||
public Vector2 InnerContextIconTopRightMarginOverride
|
||||
{
|
||||
[Token(Token = "0x600FAAF")]
|
||||
[Address(RVA = "0x9EE560", Offset = "0x9ECF60", VA = "0x1809EE560")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A41 RID: 10817
|
||||
// (get) Token: 0x0600FAB0 RID: 64176 RVA: 0x003B0224 File Offset: 0x003AE424
|
||||
[Token(Token = "0x17002A41")]
|
||||
public bool OverrideCustomIconTopLeftMargin
|
||||
{
|
||||
[Token(Token = "0x600FAB0")]
|
||||
[Address(RVA = "0x6374D0", Offset = "0x635ED0", VA = "0x1806374D0")]
|
||||
get
|
||||
{
|
||||
return this.overrideCustomIconTopLeftMargin;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A42 RID: 10818
|
||||
// (get) Token: 0x0600FAB1 RID: 64177 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A42")]
|
||||
public Vector2 CustomIconTopLeftMarginOverride
|
||||
{
|
||||
[Token(Token = "0x600FAB1")]
|
||||
[Address(RVA = "0x16BA630", Offset = "0x16B9030", VA = "0x1816BA630")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600FAB2 RID: 64178 RVA: 0x003B0238 File Offset: 0x003AE438
|
||||
[Token(Token = "0x600FAB2")]
|
||||
[Address(RVA = "0x3C1670", Offset = "0x3C0070", VA = "0x1803C1670")]
|
||||
public ChipConfig()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400A6FE RID: 42750
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x400A6FE")]
|
||||
[SerializeField]
|
||||
private Mesh[] meshes;
|
||||
|
||||
// Token: 0x0400A6FF RID: 42751
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x400A6FF")]
|
||||
[SerializeField]
|
||||
[Tooltip("This is the distance from the top of the chip to the title text.")]
|
||||
private float titleTextY;
|
||||
|
||||
// Token: 0x0400A700 RID: 42752
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x1C")]
|
||||
[Token(Token = "0x400A700")]
|
||||
[SerializeField]
|
||||
private float selfPortY;
|
||||
|
||||
// Token: 0x0400A701 RID: 42753
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x400A701")]
|
||||
[SerializeField]
|
||||
[Tooltip("This is the margin from the bottom of the chip to the first port.")]
|
||||
private float firstPortY;
|
||||
|
||||
// Token: 0x0400A702 RID: 42754
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x24")]
|
||||
[Token(Token = "0x400A702")]
|
||||
[SerializeField]
|
||||
private float titleTextXMargin;
|
||||
|
||||
// Token: 0x0400A703 RID: 42755
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x400A703")]
|
||||
[SerializeField]
|
||||
private float titleTextLeftMargin;
|
||||
|
||||
// Token: 0x0400A704 RID: 42756
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x2C")]
|
||||
[Token(Token = "0x400A704")]
|
||||
[SerializeField]
|
||||
private float titleTextRightMargin;
|
||||
|
||||
// Token: 0x0400A705 RID: 42757
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x400A705")]
|
||||
[SerializeField]
|
||||
private float portXInset;
|
||||
|
||||
// Token: 0x0400A706 RID: 42758
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x34")]
|
||||
[Token(Token = "0x400A706")]
|
||||
[SerializeField]
|
||||
private float portTextXSpaceBetween;
|
||||
|
||||
// Token: 0x0400A707 RID: 42759
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x400A707")]
|
||||
[SerializeField]
|
||||
private float minInputPortWidth;
|
||||
|
||||
// Token: 0x0400A708 RID: 42760
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x3C")]
|
||||
[Token(Token = "0x400A708")]
|
||||
[SerializeField]
|
||||
private float minOutputPortWidth;
|
||||
|
||||
// Token: 0x0400A709 RID: 42761
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x400A709")]
|
||||
[SerializeField]
|
||||
[Tooltip("An adjustment applied to the vertical space reserved for ports when there are no ports present.")]
|
||||
private float noPortsYAdjustment;
|
||||
|
||||
// Token: 0x0400A70A RID: 42762
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x44")]
|
||||
[Token(Token = "0x400A70A")]
|
||||
[SerializeField]
|
||||
[Tooltip("An adjustment applied to the vertical space reserved for ports when there are any ports present.")]
|
||||
private float anyPortsYAdjustment;
|
||||
|
||||
// Token: 0x0400A70B RID: 42763
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x48")]
|
||||
[Token(Token = "0x400A70B")]
|
||||
[SerializeField]
|
||||
private float minHeight;
|
||||
|
||||
// Token: 0x0400A70C RID: 42764
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x4C")]
|
||||
[Token(Token = "0x400A70C")]
|
||||
[SerializeField]
|
||||
private Vector3 axisOffset;
|
||||
|
||||
// Token: 0x0400A70D RID: 42765
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x58")]
|
||||
[Token(Token = "0x400A70D")]
|
||||
[SerializeField]
|
||||
private Vector3 axisMargin;
|
||||
|
||||
// Token: 0x0400A70E RID: 42766
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x64")]
|
||||
[Token(Token = "0x400A70E")]
|
||||
[SerializeField]
|
||||
private bool overrideInnerContextIconTopRightMargin;
|
||||
|
||||
// Token: 0x0400A70F RID: 42767
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x68")]
|
||||
[Token(Token = "0x400A70F")]
|
||||
[SerializeField]
|
||||
private Vector2 innerContextIconTopRightMarginOverride;
|
||||
|
||||
// Token: 0x0400A710 RID: 42768
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x70")]
|
||||
[Token(Token = "0x400A710")]
|
||||
[SerializeField]
|
||||
private bool overrideCustomIconTopLeftMargin;
|
||||
|
||||
// Token: 0x0400A711 RID: 42769
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x74")]
|
||||
[Token(Token = "0x400A711")]
|
||||
[SerializeField]
|
||||
private Vector2 customIconTopLeftMarginOverride;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,806 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
using CircuitsV2.Graph;
|
||||
using CircuitsV2.Utilities;
|
||||
using Cpp2IlInjected;
|
||||
using RecRoom.CircuitsV2.Adapter;
|
||||
using RecRoom.Core.FastLines;
|
||||
using UnityEngine;
|
||||
|
||||
namespace RecRoom.CircuitsV2.Config
|
||||
{
|
||||
// Token: 0x0200235E RID: 9054
|
||||
[Token(Token = "0x200235E")]
|
||||
[CreateAssetMenu]
|
||||
[Serializable]
|
||||
[StructLayout(3)]
|
||||
public sealed class CircuitsV2Config : ScriptableObject
|
||||
{
|
||||
// Token: 0x17002A43 RID: 10819
|
||||
// (get) Token: 0x0600FAB3 RID: 64179 RVA: 0x003B024C File Offset: 0x003AE44C
|
||||
[Token(Token = "0x17002A43")]
|
||||
public Material WireMaterial
|
||||
{
|
||||
[Token(Token = "0x600FAB3")]
|
||||
[Address(RVA = "0x3C1240", Offset = "0x3BFC40", VA = "0x1803C1240")]
|
||||
get
|
||||
{
|
||||
return this.wireMaterial;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A44 RID: 10820
|
||||
// (get) Token: 0x0600FAB4 RID: 64180 RVA: 0x003B0260 File Offset: 0x003AE460
|
||||
[Token(Token = "0x17002A44")]
|
||||
public float WireWidth
|
||||
{
|
||||
[Token(Token = "0x600FAB4")]
|
||||
[Address(RVA = "0x4D2500", Offset = "0x4D0F00", VA = "0x1804D2500")]
|
||||
get
|
||||
{
|
||||
return this.wireWidth;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A45 RID: 10821
|
||||
// (get) Token: 0x0600FAB5 RID: 64181 RVA: 0x003B0274 File Offset: 0x003AE474
|
||||
[Token(Token = "0x17002A45")]
|
||||
public Port Port
|
||||
{
|
||||
[Token(Token = "0x600FAB5")]
|
||||
[Address(RVA = "0x3C1230", Offset = "0x3BFC30", VA = "0x1803C1230")]
|
||||
get
|
||||
{
|
||||
return this.port;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A46 RID: 10822
|
||||
// (get) Token: 0x0600FAB6 RID: 64182 RVA: 0x003B0288 File Offset: 0x003AE488
|
||||
[Token(Token = "0x17002A46")]
|
||||
public float PortTextZ
|
||||
{
|
||||
[Token(Token = "0x600FAB6")]
|
||||
[Address(RVA = "0x467C00", Offset = "0x466600", VA = "0x180467C00")]
|
||||
get
|
||||
{
|
||||
return this.portTextZ;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A47 RID: 10823
|
||||
// (get) Token: 0x0600FAB7 RID: 64183 RVA: 0x003B029C File Offset: 0x003AE49C
|
||||
[Token(Token = "0x17002A47")]
|
||||
public float PortYSize
|
||||
{
|
||||
[Token(Token = "0x600FAB7")]
|
||||
[Address(RVA = "0x467D00", Offset = "0x466700", VA = "0x180467D00")]
|
||||
get
|
||||
{
|
||||
return this.portYSize;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A48 RID: 10824
|
||||
// (get) Token: 0x0600FAB8 RID: 64184 RVA: 0x003B02B0 File Offset: 0x003AE4B0
|
||||
[Token(Token = "0x17002A48")]
|
||||
public float PortGroupYMargin
|
||||
{
|
||||
[Token(Token = "0x600FAB8")]
|
||||
[Address(RVA = "0x621DA0", Offset = "0x6207A0", VA = "0x180621DA0")]
|
||||
get
|
||||
{
|
||||
return this.portGroupYMargin;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A49 RID: 10825
|
||||
// (get) Token: 0x0600FAB9 RID: 64185 RVA: 0x003B02C4 File Offset: 0x003AE4C4
|
||||
[Token(Token = "0x17002A49")]
|
||||
public float PortDefaultValueMargin
|
||||
{
|
||||
[Token(Token = "0x600FAB9")]
|
||||
[Address(RVA = "0x621D80", Offset = "0x620780", VA = "0x180621D80")]
|
||||
get
|
||||
{
|
||||
return this.portDefaultValueMargin;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A4A RID: 10826
|
||||
// (get) Token: 0x0600FABA RID: 64186 RVA: 0x003B02D8 File Offset: 0x003AE4D8
|
||||
[Token(Token = "0x17002A4A")]
|
||||
public int PortDefaultValueMaxLength
|
||||
{
|
||||
[Token(Token = "0x600FABA")]
|
||||
[Address(RVA = "0x446CA0", Offset = "0x4456A0", VA = "0x180446CA0")]
|
||||
get
|
||||
{
|
||||
return this.portDefaultValueMaxLength;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A4B RID: 10827
|
||||
// (get) Token: 0x0600FABB RID: 64187 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A4B")]
|
||||
public Vector2 InnerContextIconTopRightMargin
|
||||
{
|
||||
[Token(Token = "0x600FABB")]
|
||||
[Address(RVA = "0x1092260", Offset = "0x1090C60", VA = "0x181092260")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A4C RID: 10828
|
||||
// (get) Token: 0x0600FABC RID: 64188 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A4C")]
|
||||
public Vector2 SyncIconTopRightMargin
|
||||
{
|
||||
[Token(Token = "0x600FABC")]
|
||||
[Address(RVA = "0x1092280", Offset = "0x1090C80", VA = "0x181092280")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A4D RID: 10829
|
||||
// (get) Token: 0x0600FABD RID: 64189 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A4D")]
|
||||
public Vector2 EventSenderIconBottomRightMargin
|
||||
{
|
||||
[Token(Token = "0x600FABD")]
|
||||
[Address(RVA = "0x1A84D30", Offset = "0x1A83730", VA = "0x181A84D30")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A4E RID: 10830
|
||||
// (get) Token: 0x0600FABE RID: 64190 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A4E")]
|
||||
public Vector2 CustomIconTopLeftMargin
|
||||
{
|
||||
[Token(Token = "0x600FABE")]
|
||||
[Address(RVA = "0x12B1230", Offset = "0x12AFC30", VA = "0x1812B1230")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A4F RID: 10831
|
||||
// (get) Token: 0x0600FABF RID: 64191 RVA: 0x003B02EC File Offset: 0x003AE4EC
|
||||
[Token(Token = "0x17002A4F")]
|
||||
public float EventReceiverIconLeftMargin
|
||||
{
|
||||
[Token(Token = "0x600FABF")]
|
||||
[Address(RVA = "0x1A84D20", Offset = "0x1A83720", VA = "0x181A84D20")]
|
||||
get
|
||||
{
|
||||
return this.eventReceiverIconLeftMargin;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A50 RID: 10832
|
||||
// (get) Token: 0x0600FAC0 RID: 64192 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A50")]
|
||||
public Color EventIconNotRegisteredColor
|
||||
{
|
||||
[Token(Token = "0x600FAC0")]
|
||||
[Address(RVA = "0x12952F0", Offset = "0x1293CF0", VA = "0x1812952F0")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A51 RID: 10833
|
||||
// (get) Token: 0x0600FAC1 RID: 64193 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A51")]
|
||||
public Color EventIconEmissiveNotRegisteredColor
|
||||
{
|
||||
[Token(Token = "0x600FAC1")]
|
||||
[Address(RVA = "0x1177FC0", Offset = "0x11769C0", VA = "0x181177FC0")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A52 RID: 10834
|
||||
// (get) Token: 0x0600FAC2 RID: 64194 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A52")]
|
||||
public Color EventIconRegisteredColor
|
||||
{
|
||||
[Token(Token = "0x600FAC2")]
|
||||
[Address(RVA = "0x16711E0", Offset = "0x166FBE0", VA = "0x1816711E0")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A53 RID: 10835
|
||||
// (get) Token: 0x0600FAC3 RID: 64195 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A53")]
|
||||
public Color EventIconEmissiveRegisteredColor
|
||||
{
|
||||
[Token(Token = "0x600FAC3")]
|
||||
[Address(RVA = "0x1671390", Offset = "0x166FD90", VA = "0x181671390")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A54 RID: 10836
|
||||
// (get) Token: 0x0600FAC4 RID: 64196 RVA: 0x003B0300 File Offset: 0x003AE500
|
||||
[Token(Token = "0x17002A54")]
|
||||
public IReadOnlyList<Mesh> ValueMeshes
|
||||
{
|
||||
[Token(Token = "0x600FAC4")]
|
||||
[Address(RVA = "0x3D32E0", Offset = "0x3D1CE0", VA = "0x1803D32E0")]
|
||||
get
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (0600FAC4)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Collections.Generic.IReadOnlyList`1<UnityEngine.Mesh> RecRoom.CircuitsV2.Config.CircuitsV2Config::get_ValueMeshes()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{
|
||||
Block_0:
|
||||
stloc:class [UnityEngine.CoreModule]UnityEngine.Mesh[](var_0_06, ldfld:class [UnityEngine.CoreModule]UnityEngine.Mesh[](CircuitsV2Config::valueMeshes, ldloc:CircuitsV2Config(this)))
|
||||
}
|
||||
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
||||
--- End of inner exception stack trace ---
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
||||
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
|
||||
*/;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A55 RID: 10837
|
||||
// (get) Token: 0x0600FAC5 RID: 64197 RVA: 0x003B0314 File Offset: 0x003AE514
|
||||
[Token(Token = "0x17002A55")]
|
||||
public IReadOnlyList<Mesh> ValuePlugMeshes
|
||||
{
|
||||
[Token(Token = "0x600FAC5")]
|
||||
[Address(RVA = "0x4CFB90", Offset = "0x4CE590", VA = "0x1804CFB90")]
|
||||
get
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (0600FAC5)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Collections.Generic.IReadOnlyList`1<UnityEngine.Mesh> RecRoom.CircuitsV2.Config.CircuitsV2Config::get_ValuePlugMeshes()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{
|
||||
Block_0:
|
||||
stloc:class [UnityEngine.CoreModule]UnityEngine.Mesh[](var_0_06, ldfld:class [UnityEngine.CoreModule]UnityEngine.Mesh[](CircuitsV2Config::valuePlugMeshes, ldloc:CircuitsV2Config(this)))
|
||||
}
|
||||
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
||||
--- End of inner exception stack trace ---
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
||||
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
|
||||
*/;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A56 RID: 10838
|
||||
// (get) Token: 0x0600FAC6 RID: 64198 RVA: 0x003B0328 File Offset: 0x003AE528
|
||||
[Token(Token = "0x17002A56")]
|
||||
public IReadOnlyList<Mesh> ReferenceMeshes
|
||||
{
|
||||
[Token(Token = "0x600FAC6")]
|
||||
[Address(RVA = "0x3D31D0", Offset = "0x3D1BD0", VA = "0x1803D31D0")]
|
||||
get
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (0600FAC6)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Collections.Generic.IReadOnlyList`1<UnityEngine.Mesh> RecRoom.CircuitsV2.Config.CircuitsV2Config::get_ReferenceMeshes()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{
|
||||
Block_0:
|
||||
stloc:class [UnityEngine.CoreModule]UnityEngine.Mesh[](var_0_06, ldfld:class [UnityEngine.CoreModule]UnityEngine.Mesh[](CircuitsV2Config::referenceMeshes, ldloc:CircuitsV2Config(this)))
|
||||
}
|
||||
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
||||
--- End of inner exception stack trace ---
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
||||
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
|
||||
*/;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A57 RID: 10839
|
||||
// (get) Token: 0x0600FAC7 RID: 64199 RVA: 0x003B033C File Offset: 0x003AE53C
|
||||
[Token(Token = "0x17002A57")]
|
||||
public IReadOnlyList<Mesh> ReferencePlugMeshes
|
||||
{
|
||||
[Token(Token = "0x600FAC7")]
|
||||
[Address(RVA = "0x5D55F0", Offset = "0x5D3FF0", VA = "0x1805D55F0")]
|
||||
get
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (0600FAC7)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Collections.Generic.IReadOnlyList`1<UnityEngine.Mesh> RecRoom.CircuitsV2.Config.CircuitsV2Config::get_ReferencePlugMeshes()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{
|
||||
Block_0:
|
||||
stloc:class [UnityEngine.CoreModule]UnityEngine.Mesh[](var_0_06, ldfld:class [UnityEngine.CoreModule]UnityEngine.Mesh[](CircuitsV2Config::referencePlugMeshes, ldloc:CircuitsV2Config(this)))
|
||||
}
|
||||
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
||||
--- End of inner exception stack trace ---
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
||||
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
|
||||
*/;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A58 RID: 10840
|
||||
// (get) Token: 0x0600FAC8 RID: 64200 RVA: 0x003B0350 File Offset: 0x003AE550
|
||||
[Token(Token = "0x17002A58")]
|
||||
public IReadOnlyList<Mesh> DefaultValueMeshes
|
||||
{
|
||||
[Token(Token = "0x600FAC8")]
|
||||
[Address(RVA = "0x3EFAF0", Offset = "0x3EE4F0", VA = "0x1803EFAF0")]
|
||||
get
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (0600FAC8)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Collections.Generic.IReadOnlyList`1<UnityEngine.Mesh> RecRoom.CircuitsV2.Config.CircuitsV2Config::get_DefaultValueMeshes()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{
|
||||
Block_0:
|
||||
stloc:class [UnityEngine.CoreModule]UnityEngine.Mesh[](var_0_06, ldfld:class [UnityEngine.CoreModule]UnityEngine.Mesh[](CircuitsV2Config::defaultValueMeshes, ldloc:CircuitsV2Config(this)))
|
||||
}
|
||||
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
||||
--- End of inner exception stack trace ---
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
||||
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
|
||||
*/;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600FAC9 RID: 64201 RVA: 0x003B0364 File Offset: 0x003AE564
|
||||
[Token(Token = "0x600FAC9")]
|
||||
[Address(RVA = "0x1A84BA0", Offset = "0x1A835A0", VA = "0x181A84BA0")]
|
||||
public TypeConfig MNEEKMHPKIO(TypeKey GEDCEIDOKJL)
|
||||
{
|
||||
CircuitsV2Config.TypeConfigDictionary typeConfigDictionary = this.typeConfigs;
|
||||
bool flag;
|
||||
if (flag)
|
||||
{
|
||||
}
|
||||
return this.undefinedTypeConfig;
|
||||
}
|
||||
|
||||
// Token: 0x0600FACA RID: 64202 RVA: 0x003B0388 File Offset: 0x003AE588
|
||||
[Token(Token = "0x600FACA")]
|
||||
[Address(RVA = "0x1A84CA0", Offset = "0x1A836A0", VA = "0x181A84CA0")]
|
||||
public ChipConfig PPFLCFJMJLJ(ChipKey EHHKGBAMIOP)
|
||||
{
|
||||
CircuitsV2Config.ChipConfigDictionary chipConfigDictionary = this.chipConfigs;
|
||||
bool flag;
|
||||
if (flag)
|
||||
{
|
||||
}
|
||||
return this.undefinedChipConfig;
|
||||
}
|
||||
|
||||
// Token: 0x0600FACB RID: 64203 RVA: 0x003B03AC File Offset: 0x003AE5AC
|
||||
[Token(Token = "0x600FACB")]
|
||||
[Address(RVA = "0x1A84C20", Offset = "0x1A83620", VA = "0x181A84C20")]
|
||||
public Sprite NGFBAHDLDPD(string OACEJPAHPGF)
|
||||
{
|
||||
CircuitsV2Config.CustomIconDictionary customIconDictionary = this.customIcons;
|
||||
int num = 0;
|
||||
bool flag = customIconDictionary.TryGetValue(OACEJPAHPGF, num);
|
||||
throw new NullReferenceException();
|
||||
}
|
||||
|
||||
// Token: 0x17002A59 RID: 10841
|
||||
// (get) Token: 0x0600FACC RID: 64204 RVA: 0x003B03D0 File Offset: 0x003AE5D0
|
||||
[Token(Token = "0x17002A59")]
|
||||
public FastLineSettings ControlPanelTetherSettings
|
||||
{
|
||||
[Token(Token = "0x600FACC")]
|
||||
[Address(RVA = "0x3CBEF0", Offset = "0x3CA8F0", VA = "0x1803CBEF0")]
|
||||
get
|
||||
{
|
||||
return this.controlPanelTetherSettings;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600FACD RID: 64205 RVA: 0x003B03E4 File Offset: 0x003AE5E4
|
||||
[Token(Token = "0x600FACD")]
|
||||
[Address(RVA = "0x1A84A80", Offset = "0x1A83480", VA = "0x181A84A80")]
|
||||
public bool GNHFEFDIOEM(Guid EHHKGBAMIOP, out CircuitNodeConfig PBGBNMCPEAJ)
|
||||
{
|
||||
CircuitsV2Config.CircuitNodeConfigDictionary circuitNodeConfigDictionary = this.circuitNodeConfigs;
|
||||
bool flag;
|
||||
return flag;
|
||||
}
|
||||
|
||||
// Token: 0x0600FACE RID: 64206 RVA: 0x003B0400 File Offset: 0x003AE600
|
||||
[Token(Token = "0x600FACE")]
|
||||
[Address(RVA = "0x1A84B00", Offset = "0x1A83500", VA = "0x181A84B00")]
|
||||
public bool GNHFEFDIOEM(NodeDesc LCCCAALFBFB, out CircuitNodeConfig PBGBNMCPEAJ)
|
||||
{
|
||||
if (LCCCAALFBFB == 0)
|
||||
{
|
||||
}
|
||||
NodeDescId <Id>k__BackingField = LCCCAALFBFB.<Id>k__BackingField;
|
||||
CircuitsV2Config.CircuitNodeConfigDictionary circuitNodeConfigDictionary = this.circuitNodeConfigs;
|
||||
bool flag;
|
||||
return flag;
|
||||
}
|
||||
|
||||
// Token: 0x14000117 RID: 279
|
||||
// (add) Token: 0x0600FACF RID: 64207 RVA: 0x003B0428 File Offset: 0x003AE628
|
||||
// (remove) Token: 0x0600FAD0 RID: 64208 RVA: 0x003B0444 File Offset: 0x003AE644
|
||||
[Token(Token = "0x14000117")]
|
||||
public event Action LLKKBIHONAD
|
||||
{
|
||||
[Token(Token = "0x600FACF")]
|
||||
[Address(RVA = "0x1A84940", Offset = "0x1A83340", VA = "0x181A84940")]
|
||||
[CompilerGenerated]
|
||||
add
|
||||
{
|
||||
Delegate @delegate;
|
||||
while (@delegate != 0 && @delegate == 0)
|
||||
{
|
||||
}
|
||||
while (@delegate != this)
|
||||
{
|
||||
}
|
||||
}
|
||||
[Token(Token = "0x600FAD0")]
|
||||
[Address(RVA = "0x1A849E0", Offset = "0x1A833E0", VA = "0x181A849E0")]
|
||||
[CompilerGenerated]
|
||||
remove
|
||||
{
|
||||
Delegate @delegate;
|
||||
while (@delegate != 0 && @delegate == 0)
|
||||
{
|
||||
}
|
||||
while (@delegate != this)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600FAD1 RID: 64209 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x600FAD1")]
|
||||
[Address(RVA = "0x3C9F60", Offset = "0x3C8960", VA = "0x1803C9F60")]
|
||||
private void HDCFHIKKDBC()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x0600FAD2 RID: 64210 RVA: 0x003B0460 File Offset: 0x003AE660
|
||||
[Token(Token = "0x600FAD2")]
|
||||
[Address(RVA = "0x3C6D30", Offset = "0x3C5730", VA = "0x1803C6D30")]
|
||||
public CircuitsV2Config()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400A712 RID: 42770
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x400A712")]
|
||||
[SerializeField]
|
||||
private Material wireMaterial;
|
||||
|
||||
// Token: 0x0400A713 RID: 42771
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x400A713")]
|
||||
[SerializeField]
|
||||
private float wireWidth;
|
||||
|
||||
// Token: 0x0400A714 RID: 42772
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x400A714")]
|
||||
[SerializeField]
|
||||
private Port port;
|
||||
|
||||
// Token: 0x0400A715 RID: 42773
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x400A715")]
|
||||
[SerializeField]
|
||||
private float portTextZ;
|
||||
|
||||
// Token: 0x0400A716 RID: 42774
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x34")]
|
||||
[Token(Token = "0x400A716")]
|
||||
[SerializeField]
|
||||
private float portYSize;
|
||||
|
||||
// Token: 0x0400A717 RID: 42775
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x400A717")]
|
||||
[SerializeField]
|
||||
private float portGroupYMargin;
|
||||
|
||||
// Token: 0x0400A718 RID: 42776
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x3C")]
|
||||
[Token(Token = "0x400A718")]
|
||||
[SerializeField]
|
||||
private float portDefaultValueMargin;
|
||||
|
||||
// Token: 0x0400A719 RID: 42777
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x400A719")]
|
||||
[SerializeField]
|
||||
private int portDefaultValueMaxLength;
|
||||
|
||||
// Token: 0x0400A71A RID: 42778
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x44")]
|
||||
[Token(Token = "0x400A71A")]
|
||||
[SerializeField]
|
||||
private Vector2 innerContextIconTopRightMargin;
|
||||
|
||||
// Token: 0x0400A71B RID: 42779
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x4C")]
|
||||
[Token(Token = "0x400A71B")]
|
||||
[SerializeField]
|
||||
private Vector2 syncIconTopRightMargin;
|
||||
|
||||
// Token: 0x0400A71C RID: 42780
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x54")]
|
||||
[Token(Token = "0x400A71C")]
|
||||
[SerializeField]
|
||||
private Vector2 eventSenderIconBottomRightMargin;
|
||||
|
||||
// Token: 0x0400A71D RID: 42781
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x5C")]
|
||||
[Token(Token = "0x400A71D")]
|
||||
[SerializeField]
|
||||
private Vector2 customIconTopLeftMargin;
|
||||
|
||||
// Token: 0x0400A71E RID: 42782
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x64")]
|
||||
[Token(Token = "0x400A71E")]
|
||||
[SerializeField]
|
||||
private float eventReceiverIconLeftMargin;
|
||||
|
||||
// Token: 0x0400A71F RID: 42783
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x68")]
|
||||
[Token(Token = "0x400A71F")]
|
||||
[SerializeField]
|
||||
private Color eventIconNotRegisteredColor;
|
||||
|
||||
// Token: 0x0400A720 RID: 42784
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x78")]
|
||||
[Token(Token = "0x400A720")]
|
||||
[SerializeField]
|
||||
[ColorUsage(false, true)]
|
||||
private Color eventIconEmissiveNotRegisteredColor;
|
||||
|
||||
// Token: 0x0400A721 RID: 42785
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x88")]
|
||||
[Token(Token = "0x400A721")]
|
||||
[SerializeField]
|
||||
private Color eventIconRegisteredColor;
|
||||
|
||||
// Token: 0x0400A722 RID: 42786
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x98")]
|
||||
[Token(Token = "0x400A722")]
|
||||
[SerializeField]
|
||||
[ColorUsage(false, true)]
|
||||
private Color eventIconEmissiveRegisteredColor;
|
||||
|
||||
// Token: 0x0400A723 RID: 42787
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xA8")]
|
||||
[Token(Token = "0x400A723")]
|
||||
[SerializeField]
|
||||
private Mesh[] valueMeshes;
|
||||
|
||||
// Token: 0x0400A724 RID: 42788
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xB0")]
|
||||
[Token(Token = "0x400A724")]
|
||||
[SerializeField]
|
||||
private Mesh[] valuePlugMeshes;
|
||||
|
||||
// Token: 0x0400A725 RID: 42789
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xB8")]
|
||||
[Token(Token = "0x400A725")]
|
||||
[SerializeField]
|
||||
private Mesh[] referenceMeshes;
|
||||
|
||||
// Token: 0x0400A726 RID: 42790
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xC0")]
|
||||
[Token(Token = "0x400A726")]
|
||||
[SerializeField]
|
||||
private Mesh[] referencePlugMeshes;
|
||||
|
||||
// Token: 0x0400A727 RID: 42791
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xC8")]
|
||||
[Token(Token = "0x400A727")]
|
||||
[SerializeField]
|
||||
private Mesh[] defaultValueMeshes;
|
||||
|
||||
// Token: 0x0400A728 RID: 42792
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xD0")]
|
||||
[Token(Token = "0x400A728")]
|
||||
[SerializeField]
|
||||
private CircuitsV2Config.TypeConfigDictionary typeConfigs;
|
||||
|
||||
// Token: 0x0400A729 RID: 42793
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xD8")]
|
||||
[Token(Token = "0x400A729")]
|
||||
[SerializeField]
|
||||
private TypeConfig undefinedTypeConfig;
|
||||
|
||||
// Token: 0x0400A72A RID: 42794
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xE0")]
|
||||
[Token(Token = "0x400A72A")]
|
||||
[SerializeField]
|
||||
private CircuitsV2Config.ChipConfigDictionary chipConfigs;
|
||||
|
||||
// Token: 0x0400A72B RID: 42795
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xE8")]
|
||||
[Token(Token = "0x400A72B")]
|
||||
[SerializeField]
|
||||
private ChipConfig undefinedChipConfig;
|
||||
|
||||
// Token: 0x0400A72C RID: 42796
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xF0")]
|
||||
[Token(Token = "0x400A72C")]
|
||||
[SerializeField]
|
||||
private CircuitsV2Config.CustomIconDictionary customIcons;
|
||||
|
||||
// Token: 0x0400A72D RID: 42797
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0xF8")]
|
||||
[Token(Token = "0x400A72D")]
|
||||
[SerializeField]
|
||||
private FastLineSettings controlPanelTetherSettings;
|
||||
|
||||
// Token: 0x0400A72E RID: 42798
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x100")]
|
||||
[Token(Token = "0x400A72E")]
|
||||
[SerializeField]
|
||||
private CircuitsV2Config.CircuitNodeConfigDictionary circuitNodeConfigs;
|
||||
|
||||
// Token: 0x0400A72F RID: 42799
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x108")]
|
||||
[Token(Token = "0x400A72F")]
|
||||
[CompilerGenerated]
|
||||
private Action EditorPostValidate;
|
||||
|
||||
// Token: 0x0200235F RID: 9055
|
||||
[Token(Token = "0x200235F")]
|
||||
[Serializable]
|
||||
public sealed class TypeConfigDictionary : EditableSerializedDictionary<TypeKey, TypeConfig, CircuitsV2Config.TypeConfigDictionary.Kvp>
|
||||
{
|
||||
// Token: 0x0600FAD3 RID: 64211 RVA: 0x003B0474 File Offset: 0x003AE674
|
||||
[Token(Token = "0x600FAD3")]
|
||||
[Address(RVA = "0x16777B0", Offset = "0x16761B0", VA = "0x1816777B0")]
|
||||
public TypeConfigDictionary()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x02002360 RID: 9056
|
||||
[Token(Token = "0x2002360")]
|
||||
[Serializable]
|
||||
public sealed class Kvp : SerializedKeyVal<TypeKey, TypeConfig>
|
||||
{
|
||||
// Token: 0x0600FAD4 RID: 64212 RVA: 0x0003C3EA File Offset: 0x0003A5EA
|
||||
[Token(Token = "0x600FAD4")]
|
||||
[Address(RVA = "0x16732F0", Offset = "0x1671CF0", VA = "0x1816732F0")]
|
||||
public Kvp()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x02002361 RID: 9057
|
||||
[Token(Token = "0x2002361")]
|
||||
[Serializable]
|
||||
public sealed class ChipConfigDictionary : EditableSerializedDictionary<ChipKey, ChipConfig, CircuitsV2Config.ChipConfigDictionary.Kvp>
|
||||
{
|
||||
// Token: 0x0600FAD5 RID: 64213 RVA: 0x003B0488 File Offset: 0x003AE688
|
||||
[Token(Token = "0x600FAD5")]
|
||||
[Address(RVA = "0x1A77B30", Offset = "0x1A76530", VA = "0x181A77B30")]
|
||||
public ChipConfigDictionary()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x02002362 RID: 9058
|
||||
[Token(Token = "0x2002362")]
|
||||
[Serializable]
|
||||
public sealed class Kvp : SerializedKeyVal<ChipKey, ChipConfig>
|
||||
{
|
||||
// Token: 0x0600FAD6 RID: 64214 RVA: 0x0003C3EA File Offset: 0x0003A5EA
|
||||
[Token(Token = "0x600FAD6")]
|
||||
[Address(RVA = "0x1A86410", Offset = "0x1A84E10", VA = "0x181A86410")]
|
||||
public Kvp()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x02002363 RID: 9059
|
||||
[Token(Token = "0x2002363")]
|
||||
[Serializable]
|
||||
public sealed class CustomIconDictionary : EditableSerializedDictionary<string, Sprite, CircuitsV2Config.CustomIconDictionary.Kvp>
|
||||
{
|
||||
// Token: 0x0600FAD7 RID: 64215 RVA: 0x003B049C File Offset: 0x003AE69C
|
||||
[Token(Token = "0x600FAD7")]
|
||||
[Address(RVA = "0x1A84FB0", Offset = "0x1A839B0", VA = "0x181A84FB0")]
|
||||
public CustomIconDictionary()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x02002364 RID: 9060
|
||||
[Token(Token = "0x2002364")]
|
||||
[Serializable]
|
||||
public sealed class Kvp : SerializedKeyVal<string, Sprite>
|
||||
{
|
||||
// Token: 0x0600FAD8 RID: 64216 RVA: 0x0003C3EA File Offset: 0x0003A5EA
|
||||
[Token(Token = "0x600FAD8")]
|
||||
[Address(RVA = "0x1673330", Offset = "0x1671D30", VA = "0x181673330")]
|
||||
public Kvp()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x02002365 RID: 9061
|
||||
[Token(Token = "0x2002365")]
|
||||
[Serializable]
|
||||
public sealed class CircuitNodeConfigDictionary : EditableSerializedDictionary<string, CircuitNodeConfig, CircuitsV2Config.CircuitNodeConfigDictionary.Kvp>
|
||||
{
|
||||
// Token: 0x0600FAD9 RID: 64217 RVA: 0x003B04B0 File Offset: 0x003AE6B0
|
||||
[Token(Token = "0x600FAD9")]
|
||||
[Address(RVA = "0x1A84900", Offset = "0x1A83300", VA = "0x181A84900")]
|
||||
public CircuitNodeConfigDictionary()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x02002366 RID: 9062
|
||||
[Token(Token = "0x2002366")]
|
||||
[Serializable]
|
||||
public sealed class Kvp : SerializedKeyVal<string, CircuitNodeConfig>
|
||||
{
|
||||
// Token: 0x0600FADA RID: 64218 RVA: 0x0003C3EA File Offset: 0x0003A5EA
|
||||
[Token(Token = "0x600FADA")]
|
||||
[Address(RVA = "0x1A863D0", Offset = "0x1A84DD0", VA = "0x181A863D0")]
|
||||
public Kvp()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,287 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Runtime.InteropServices;
|
||||
using Cpp2IlInjected;
|
||||
using RecRoom.Core.FastLines;
|
||||
using UnityEngine;
|
||||
|
||||
namespace RecRoom.CircuitsV2.Config
|
||||
{
|
||||
// Token: 0x02002367 RID: 9063
|
||||
[Token(Token = "0x2002367")]
|
||||
[Serializable]
|
||||
[StructLayout(3)]
|
||||
public sealed class TypeConfig
|
||||
{
|
||||
// Token: 0x17002A5A RID: 10842
|
||||
// (get) Token: 0x0600FADB RID: 64219 RVA: 0x003B04C4 File Offset: 0x003AE6C4
|
||||
[Token(Token = "0x17002A5A")]
|
||||
public IReadOnlyList<Mesh> ValueMeshOverrides
|
||||
{
|
||||
[Token(Token = "0x600FADB")]
|
||||
[Address(RVA = "0x3C39A0", Offset = "0x3C23A0", VA = "0x1803C39A0")]
|
||||
get
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (0600FADB)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Collections.Generic.IReadOnlyList`1<UnityEngine.Mesh> RecRoom.CircuitsV2.Config.TypeConfig::get_ValueMeshOverrides()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{
|
||||
Block_0:
|
||||
stloc:class [UnityEngine.CoreModule]UnityEngine.Mesh[](var_0_06, ldfld:class [UnityEngine.CoreModule]UnityEngine.Mesh[](TypeConfig::valueMeshOverrides, ldloc:TypeConfig(this)))
|
||||
}
|
||||
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
||||
--- End of inner exception stack trace ---
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
||||
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
|
||||
*/;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A5B RID: 10843
|
||||
// (get) Token: 0x0600FADC RID: 64220 RVA: 0x003B04D8 File Offset: 0x003AE6D8
|
||||
[Token(Token = "0x17002A5B")]
|
||||
public IReadOnlyList<Mesh> ValuePlugMeshOverrides
|
||||
{
|
||||
[Token(Token = "0x600FADC")]
|
||||
[Address(RVA = "0x3C1240", Offset = "0x3BFC40", VA = "0x1803C1240")]
|
||||
get
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (0600FADC)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Collections.Generic.IReadOnlyList`1<UnityEngine.Mesh> RecRoom.CircuitsV2.Config.TypeConfig::get_ValuePlugMeshOverrides()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{
|
||||
Block_0:
|
||||
stloc:class [UnityEngine.CoreModule]UnityEngine.Mesh[](var_0_06, ldfld:class [UnityEngine.CoreModule]UnityEngine.Mesh[](TypeConfig::valuePlugMeshOverrides, ldloc:TypeConfig(this)))
|
||||
}
|
||||
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
||||
--- End of inner exception stack trace ---
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
||||
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
|
||||
*/;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A5C RID: 10844
|
||||
// (get) Token: 0x0600FADD RID: 64221 RVA: 0x003B04EC File Offset: 0x003AE6EC
|
||||
[Token(Token = "0x17002A5C")]
|
||||
public IReadOnlyList<Mesh> ReferenceMeshOverrides
|
||||
{
|
||||
[Token(Token = "0x600FADD")]
|
||||
[Address(RVA = "0x3C1220", Offset = "0x3BFC20", VA = "0x1803C1220")]
|
||||
get
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (0600FADD)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Collections.Generic.IReadOnlyList`1<UnityEngine.Mesh> RecRoom.CircuitsV2.Config.TypeConfig::get_ReferenceMeshOverrides()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{
|
||||
Block_0:
|
||||
stloc:class [UnityEngine.CoreModule]UnityEngine.Mesh[](var_0_06, ldfld:class [UnityEngine.CoreModule]UnityEngine.Mesh[](TypeConfig::referenceMeshOverrides, ldloc:TypeConfig(this)))
|
||||
}
|
||||
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
||||
--- End of inner exception stack trace ---
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
||||
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
|
||||
*/;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A5D RID: 10845
|
||||
// (get) Token: 0x0600FADE RID: 64222 RVA: 0x003B0500 File Offset: 0x003AE700
|
||||
[Token(Token = "0x17002A5D")]
|
||||
public IReadOnlyList<Mesh> ReferencePlugMeshOverrides
|
||||
{
|
||||
[Token(Token = "0x600FADE")]
|
||||
[Address(RVA = "0x3C1230", Offset = "0x3BFC30", VA = "0x1803C1230")]
|
||||
get
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (0600FADE)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Collections.Generic.IReadOnlyList`1<UnityEngine.Mesh> RecRoom.CircuitsV2.Config.TypeConfig::get_ReferencePlugMeshOverrides()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{
|
||||
Block_0:
|
||||
stloc:class [UnityEngine.CoreModule]UnityEngine.Mesh[](var_0_06, ldfld:class [UnityEngine.CoreModule]UnityEngine.Mesh[](TypeConfig::referencePlugMeshOverrides, ldloc:TypeConfig(this)))
|
||||
}
|
||||
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1852
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.Optimize(DecompilerContext context, ILBlock method, AutoPropertyProvider autoPropertyProvider, StateMachineKind& stateMachineKind, MethodDef& inlinedMethod, AsyncMethodDebugInfo& asyncInfo, ILAstOptimizationStep abortBeforeStep) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 355
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(IEnumerable`1 parameters, MethodDebugInfoBuilder& builder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 123
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 88
|
||||
--- End of inner exception stack trace ---
|
||||
at ICSharpCode.Decompiler.Ast.AstMethodBodyBuilder.CreateMethodBody(MethodDef methodDef, DecompilerContext context, AutoPropertyProvider autoPropertyProvider, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, StringBuilder sb, MethodDebugInfoBuilder& stmtsBuilder) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstMethodBodyBuilder.cs:line 92
|
||||
at ICSharpCode.Decompiler.Ast.AstBuilder.AddMethodBody(EntityDeclaration methodNode, EntityDeclaration& updatedNode, MethodDef method, IEnumerable`1 parameters, Boolean valueParameterIsKeyword, MethodKind methodKind) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\Ast\AstBuilder.cs:line 1663
|
||||
*/;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A5E RID: 10846
|
||||
// (get) Token: 0x0600FADF RID: 64223 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A5E")]
|
||||
public Color DisconnectedColor
|
||||
{
|
||||
[Token(Token = "0x600FADF")]
|
||||
[Address(RVA = "0x1062610", Offset = "0x1061010", VA = "0x181062610")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A5F RID: 10847
|
||||
// (get) Token: 0x0600FAE0 RID: 64224 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A5F")]
|
||||
public Color DisconnectedEmissiveColor
|
||||
{
|
||||
[Token(Token = "0x600FAE0")]
|
||||
[Address(RVA = "0x1075450", Offset = "0x1073E50", VA = "0x181075450")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A60 RID: 10848
|
||||
// (get) Token: 0x0600FAE1 RID: 64225 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A60")]
|
||||
public Color ConnectedColor
|
||||
{
|
||||
[Token(Token = "0x600FAE1")]
|
||||
[Address(RVA = "0x595D90", Offset = "0x594790", VA = "0x180595D90")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A61 RID: 10849
|
||||
// (get) Token: 0x0600FAE2 RID: 64226 RVA: 0x0000220F File Offset: 0x0000040F
|
||||
[Token(Token = "0x17002A61")]
|
||||
public Color ConnectedEmissiveColor
|
||||
{
|
||||
[Token(Token = "0x600FAE2")]
|
||||
[Address(RVA = "0xA0DC60", Offset = "0xA0C660", VA = "0x180A0DC60")]
|
||||
get
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A62 RID: 10850
|
||||
// (get) Token: 0x0600FAE3 RID: 64227 RVA: 0x003B0514 File Offset: 0x003AE714
|
||||
[Token(Token = "0x17002A62")]
|
||||
public bool IsOutputFlipped
|
||||
{
|
||||
[Token(Token = "0x600FAE3")]
|
||||
[Address(RVA = "0x6374D0", Offset = "0x635ED0", VA = "0x1806374D0")]
|
||||
get
|
||||
{
|
||||
return this.isOutputFlipped;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x17002A63 RID: 10851
|
||||
// (get) Token: 0x0600FAE4 RID: 64228 RVA: 0x003B0528 File Offset: 0x003AE728
|
||||
[Token(Token = "0x17002A63")]
|
||||
public FastLineSettings LineSettings
|
||||
{
|
||||
[Token(Token = "0x600FAE4")]
|
||||
[Address(RVA = "0x501250", Offset = "0x4FFC50", VA = "0x180501250")]
|
||||
get
|
||||
{
|
||||
return this.lineSettings;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x0600FAE5 RID: 64229 RVA: 0x003B053C File Offset: 0x003AE73C
|
||||
[Token(Token = "0x600FAE5")]
|
||||
[Address(RVA = "0x16777F0", Offset = "0x16761F0", VA = "0x1816777F0")]
|
||||
public TypeConfig()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400A730 RID: 42800
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x10")]
|
||||
[Token(Token = "0x400A730")]
|
||||
[SerializeField]
|
||||
private Mesh[] valueMeshOverrides;
|
||||
|
||||
// Token: 0x0400A731 RID: 42801
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x400A731")]
|
||||
[SerializeField]
|
||||
private Mesh[] valuePlugMeshOverrides;
|
||||
|
||||
// Token: 0x0400A732 RID: 42802
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x400A732")]
|
||||
[SerializeField]
|
||||
private Mesh[] referenceMeshOverrides;
|
||||
|
||||
// Token: 0x0400A733 RID: 42803
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x400A733")]
|
||||
[SerializeField]
|
||||
private Mesh[] referencePlugMeshOverrides;
|
||||
|
||||
// Token: 0x0400A734 RID: 42804
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x400A734")]
|
||||
[SerializeField]
|
||||
private Color disconnectedColor;
|
||||
|
||||
// Token: 0x0400A735 RID: 42805
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x40")]
|
||||
[Token(Token = "0x400A735")]
|
||||
[SerializeField]
|
||||
[ColorUsage(false, true)]
|
||||
private Color disconnectedEmissiveColor;
|
||||
|
||||
// Token: 0x0400A736 RID: 42806
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x50")]
|
||||
[Token(Token = "0x400A736")]
|
||||
[SerializeField]
|
||||
private Color connectedColor;
|
||||
|
||||
// Token: 0x0400A737 RID: 42807
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x60")]
|
||||
[Token(Token = "0x400A737")]
|
||||
[SerializeField]
|
||||
[ColorUsage(false, true)]
|
||||
private Color connectedEmissiveColor;
|
||||
|
||||
// Token: 0x0400A738 RID: 42808
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x70")]
|
||||
[Token(Token = "0x400A738")]
|
||||
[SerializeField]
|
||||
private bool isOutputFlipped = true;
|
||||
|
||||
// Token: 0x0400A739 RID: 42809
|
||||
[global::Cpp2IlInjected.FieldOffset(Offset = "0x78")]
|
||||
[Token(Token = "0x400A739")]
|
||||
[SerializeField]
|
||||
private FastLineSettings lineSettings;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user