Add v1.0.3.1
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
|
||||
namespace commanastationwww.eternaltemple
|
||||
{
|
||||
// Token: 0x0200057D RID: 1405
|
||||
[Token(Token = "0x200057D")]
|
||||
public class DisableMeshAtRuntime : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E38 RID: 11832 RVA: 0x00062B04 File Offset: 0x00060D04
|
||||
[Token(Token = "0x6002E38")]
|
||||
[Address(RVA = "0x13CF940", Offset = "0x13CE740", VA = "0x1813CF940")]
|
||||
private void Start()
|
||||
{
|
||||
Renderer component = base.GetComponent<Renderer>();
|
||||
int num = 0;
|
||||
if (component != num)
|
||||
{
|
||||
int num2 = 0;
|
||||
component.enabled = num2 != 0;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06002E39 RID: 11833 RVA: 0x00062B34 File Offset: 0x00060D34
|
||||
[Token(Token = "0x6002E39")]
|
||||
[Address(RVA = "0x3088F0", Offset = "0x3076F0", VA = "0x1803088F0")]
|
||||
public DisableMeshAtRuntime()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,137 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
|
||||
namespace commanastationwww.eternaltemple
|
||||
{
|
||||
// Token: 0x0200057E RID: 1406
|
||||
[Token(Token = "0x200057E")]
|
||||
public class Door_Controller : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E3A RID: 11834 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E3A")]
|
||||
[Address(RVA = "0xA57F40", Offset = "0xA56D40", VA = "0x180A57F40")]
|
||||
private void Start()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E3B RID: 11835 RVA: 0x00062B48 File Offset: 0x00060D48
|
||||
[Token(Token = "0x6002E3B")]
|
||||
[Address(RVA = "0xA57E20", Offset = "0xA56C20", VA = "0x180A57E20")]
|
||||
private void OnTriggerEnter(Collider other)
|
||||
{
|
||||
if (!this.locked)
|
||||
{
|
||||
base.StopAllCoroutines();
|
||||
int num;
|
||||
Door_Controller.<openInterpolation>d__8 <openInterpolation>d__ = new Door_Controller.<openInterpolation>d__8(num);
|
||||
num = 0;
|
||||
<openInterpolation>d__.<>4__this = this;
|
||||
Coroutine coroutine = base.StartCoroutine(<openInterpolation>d__);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06002E3C RID: 11836 RVA: 0x00062B84 File Offset: 0x00060D84
|
||||
[Token(Token = "0x6002E3C")]
|
||||
[Address(RVA = "0xA57EB0", Offset = "0xA56CB0", VA = "0x180A57EB0")]
|
||||
private void OnTriggerExit(Collider other)
|
||||
{
|
||||
if (!this.stayOpen)
|
||||
{
|
||||
base.StopAllCoroutines();
|
||||
int num;
|
||||
Door_Controller.<closeInterpolation>d__9 <closeInterpolation>d__ = new Door_Controller.<closeInterpolation>d__9(num);
|
||||
num = 0;
|
||||
<closeInterpolation>d__.<>4__this = this;
|
||||
Coroutine coroutine = base.StartCoroutine(<closeInterpolation>d__);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06002E3D RID: 11837 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E3D")]
|
||||
[Address(RVA = "0xA58140", Offset = "0xA56F40", VA = "0x180A58140")]
|
||||
private IEnumerator openInterpolation()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E3E RID: 11838 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E3E")]
|
||||
[Address(RVA = "0xA580D0", Offset = "0xA56ED0", VA = "0x180A580D0")]
|
||||
private IEnumerator closeInterpolation()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E3F RID: 11839 RVA: 0x00062BC0 File Offset: 0x00060DC0
|
||||
[Token(Token = "0x6002E3F")]
|
||||
[Address(RVA = "0xA57E20", Offset = "0xA56C20", VA = "0x180A57E20")]
|
||||
public void Open()
|
||||
{
|
||||
if (!this.locked)
|
||||
{
|
||||
base.StopAllCoroutines();
|
||||
int num;
|
||||
Door_Controller.<openInterpolation>d__8 <openInterpolation>d__ = new Door_Controller.<openInterpolation>d__8(num);
|
||||
num = 0;
|
||||
<openInterpolation>d__.<>4__this = this;
|
||||
Coroutine coroutine = base.StartCoroutine(<openInterpolation>d__);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06002E40 RID: 11840 RVA: 0x00062BFC File Offset: 0x00060DFC
|
||||
[Token(Token = "0x6002E40")]
|
||||
[Address(RVA = "0xA57DA0", Offset = "0xA56BA0", VA = "0x180A57DA0")]
|
||||
public void Close()
|
||||
{
|
||||
base.StopAllCoroutines();
|
||||
int num;
|
||||
Door_Controller.<closeInterpolation>d__9 <closeInterpolation>d__ = new Door_Controller.<closeInterpolation>d__9(num);
|
||||
num = 0;
|
||||
<closeInterpolation>d__.<>4__this = this;
|
||||
Coroutine coroutine = base.StartCoroutine(<closeInterpolation>d__);
|
||||
}
|
||||
|
||||
// Token: 0x06002E41 RID: 11841 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E41")]
|
||||
[Address(RVA = "0x297F00", Offset = "0x296D00", VA = "0x180297F00")]
|
||||
private void Update()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E42 RID: 11842 RVA: 0x00062C30 File Offset: 0x00060E30
|
||||
[Token(Token = "0x6002E42")]
|
||||
[Address(RVA = "0xA580B0", Offset = "0xA56EB0", VA = "0x180A580B0")]
|
||||
public Door_Controller()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04003720 RID: 14112
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4003720")]
|
||||
public bool stayOpen = true;
|
||||
|
||||
// Token: 0x04003721 RID: 14113
|
||||
[FieldOffset(Offset = "0x19")]
|
||||
[Token(Token = "0x4003721")]
|
||||
public bool locked;
|
||||
|
||||
// Token: 0x04003722 RID: 14114
|
||||
[FieldOffset(Offset = "0x1C")]
|
||||
[Token(Token = "0x4003722")]
|
||||
public float openingSpeed = 5f;
|
||||
|
||||
// Token: 0x04003723 RID: 14115
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4003723")]
|
||||
private Transform[] allTransform;
|
||||
|
||||
// Token: 0x04003724 RID: 14116
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4003724")]
|
||||
private Transform[] childrenTransform;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
namespace commanastationwww.eternaltemple
|
||||
{
|
||||
// Token: 0x02000581 RID: 1409
|
||||
[Token(Token = "0x2000581")]
|
||||
public class FPScounter : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E4F RID: 11855 RVA: 0x00062D08 File Offset: 0x00060F08
|
||||
[Token(Token = "0x6002E4F")]
|
||||
[Address(RVA = "0x4BED50", Offset = "0x4BDB50", VA = "0x1804BED50")]
|
||||
private void Start()
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (06002E4F)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Void commanastationwww.eternaltemple.FPScounter::Start()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{; Block_0:; stloc:Text(var_0_06, call:Text(Component::GetComponent, ldloc:FPScounter[exp:Component](this))); stfld:Text(FPScounter::textFpsCounter, ldloc:FPScounter(this), ldloc:Text(var_0_06)); };
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1810
|
||||
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 344
|
||||
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 1618
|
||||
*/;
|
||||
}
|
||||
|
||||
// Token: 0x06002E50 RID: 11856 RVA: 0x00062D24 File Offset: 0x00060F24
|
||||
[Token(Token = "0x6002E50")]
|
||||
[Address(RVA = "0x4BEEA0", Offset = "0x4BDCA0", VA = "0x1804BEEA0")]
|
||||
private void Update()
|
||||
{
|
||||
float num = this.timeleft;
|
||||
float deltaTime = Time.deltaTime;
|
||||
this.timeleft = num;
|
||||
float timeScale = Time.timeScale;
|
||||
float deltaTime2 = Time.deltaTime;
|
||||
int num2 = this.frames;
|
||||
num2++;
|
||||
this.frames = num2;
|
||||
this.accum = timeScale;
|
||||
string text = string.Format("{0:F2} FPS", num2);
|
||||
this.textFpsCounter.text = text;
|
||||
float num3 = this.updateInterval;
|
||||
this.timeleft = num3;
|
||||
int num4 = 0;
|
||||
this.accum = (float)num4;
|
||||
}
|
||||
|
||||
// Token: 0x06002E51 RID: 11857 RVA: 0x00062DB8 File Offset: 0x00060FB8
|
||||
[Token(Token = "0x6002E51")]
|
||||
[Address(RVA = "0x4BECF0", Offset = "0x4BDAF0", VA = "0x1804BECF0")]
|
||||
public FPScounter()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x0400372F RID: 14127
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x400372F")]
|
||||
public float updateInterval = 0.5f;
|
||||
|
||||
// Token: 0x04003730 RID: 14128
|
||||
[FieldOffset(Offset = "0x1C")]
|
||||
[Token(Token = "0x4003730")]
|
||||
private float accum;
|
||||
|
||||
// Token: 0x04003731 RID: 14129
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4003731")]
|
||||
private int frames;
|
||||
|
||||
// Token: 0x04003732 RID: 14130
|
||||
[FieldOffset(Offset = "0x24")]
|
||||
[Token(Token = "0x4003732")]
|
||||
private float timeleft;
|
||||
|
||||
// Token: 0x04003733 RID: 14131
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4003733")]
|
||||
private Text textFpsCounter;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
|
||||
namespace commanastationwww.eternaltemple
|
||||
{
|
||||
// Token: 0x02000582 RID: 1410
|
||||
[Token(Token = "0x2000582")]
|
||||
public class FallowPlayerCamera : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E52 RID: 11858 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E52")]
|
||||
[Address(RVA = "0x4BF090", Offset = "0x4BDE90", VA = "0x1804BF090")]
|
||||
private void Start()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E53 RID: 11859 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E53")]
|
||||
[Address(RVA = "0x4BEFA0", Offset = "0x4BDDA0", VA = "0x1804BEFA0")]
|
||||
private void LateUpdate()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E54 RID: 11860 RVA: 0x00062DD8 File Offset: 0x00060FD8
|
||||
[Token(Token = "0x6002E54")]
|
||||
[Address(RVA = "0x3088F0", Offset = "0x3076F0", VA = "0x1803088F0")]
|
||||
public FallowPlayerCamera()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04003734 RID: 14132
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4003734")]
|
||||
public GameObject player;
|
||||
|
||||
// Token: 0x04003735 RID: 14133
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4003735")]
|
||||
private Vector3 offset;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,105 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
|
||||
namespace commanastationwww.eternaltemple
|
||||
{
|
||||
// Token: 0x02000583 RID: 1411
|
||||
[Token(Token = "0x2000583")]
|
||||
public class HidablePart : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E55 RID: 11861 RVA: 0x00062DEC File Offset: 0x00060FEC
|
||||
[Token(Token = "0x6002E55")]
|
||||
[Address(RVA = "0x117C4D0", Offset = "0x117B2D0", VA = "0x18117C4D0")]
|
||||
private void Start()
|
||||
{
|
||||
Material material = base.GetComponent<Renderer>().GetMaterial();
|
||||
this.mat = material;
|
||||
float @float = this.mat.GetFloat("_Cutoff");
|
||||
this.currentAlpha = @float;
|
||||
}
|
||||
|
||||
// Token: 0x06002E56 RID: 11862 RVA: 0x00062E2C File Offset: 0x0006102C
|
||||
[Token(Token = "0x6002E56")]
|
||||
[Address(RVA = "0x117C600", Offset = "0x117B400", VA = "0x18117C600")]
|
||||
public void hide()
|
||||
{
|
||||
base.StopAllCoroutines();
|
||||
int num;
|
||||
HidablePart.<hideInterpolation>d__9 <hideInterpolation>d__ = new HidablePart.<hideInterpolation>d__9(num);
|
||||
num = 0;
|
||||
<hideInterpolation>d__.<>4__this = this;
|
||||
Coroutine coroutine = base.StartCoroutine(<hideInterpolation>d__);
|
||||
}
|
||||
|
||||
// Token: 0x06002E57 RID: 11863 RVA: 0x00062E60 File Offset: 0x00061060
|
||||
[Token(Token = "0x6002E57")]
|
||||
[Address(RVA = "0x117C6F0", Offset = "0x117B4F0", VA = "0x18117C6F0")]
|
||||
public void unhide()
|
||||
{
|
||||
base.StopAllCoroutines();
|
||||
int num;
|
||||
HidablePart.<unhideInterpolation>d__8 <unhideInterpolation>d__ = new HidablePart.<unhideInterpolation>d__8(num);
|
||||
num = 0;
|
||||
<unhideInterpolation>d__.<>4__this = this;
|
||||
Coroutine coroutine = base.StartCoroutine(<unhideInterpolation>d__);
|
||||
}
|
||||
|
||||
// Token: 0x06002E58 RID: 11864 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E58")]
|
||||
[Address(RVA = "0x117C680", Offset = "0x117B480", VA = "0x18117C680")]
|
||||
private IEnumerator unhideInterpolation()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E59 RID: 11865 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E59")]
|
||||
[Address(RVA = "0x117C590", Offset = "0x117B390", VA = "0x18117C590")]
|
||||
private IEnumerator hideInterpolation()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E5A RID: 11866 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E5A")]
|
||||
[Address(RVA = "0x297F00", Offset = "0x296D00", VA = "0x180297F00")]
|
||||
private void Update()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E5B RID: 11867 RVA: 0x00062E94 File Offset: 0x00061094
|
||||
[Token(Token = "0x6002E5B")]
|
||||
[Address(RVA = "0x117C570", Offset = "0x117B370", VA = "0x18117C570")]
|
||||
public HidablePart()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04003736 RID: 14134
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4003736")]
|
||||
private Material mat;
|
||||
|
||||
// Token: 0x04003737 RID: 14135
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4003737")]
|
||||
private float currentAlpha;
|
||||
|
||||
// Token: 0x04003738 RID: 14136
|
||||
[FieldOffset(Offset = "0x24")]
|
||||
[Token(Token = "0x4003738")]
|
||||
public float fadeOutSpeed = 3f;
|
||||
|
||||
// Token: 0x04003739 RID: 14137
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4003739")]
|
||||
public float minAlpha;
|
||||
|
||||
// Token: 0x0400373A RID: 14138
|
||||
[FieldOffset(Offset = "0x2C")]
|
||||
[Token(Token = "0x400373A")]
|
||||
public float maxAlpha = 1f;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,130 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
|
||||
namespace commanastationwww.eternaltemple
|
||||
{
|
||||
// Token: 0x02000586 RID: 1414
|
||||
[Token(Token = "0x2000586")]
|
||||
public class HideGroup : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E68 RID: 11880 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E68")]
|
||||
[Address(RVA = "0x117CAE0", Offset = "0x117B8E0", VA = "0x18117CAE0")]
|
||||
private void Start()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E69 RID: 11881 RVA: 0x00062F70 File Offset: 0x00061170
|
||||
[Token(Token = "0x6002E69")]
|
||||
[Address(RVA = "0x117C770", Offset = "0x117B570", VA = "0x18117C770")]
|
||||
private void OnTriggerEnter(Collider other)
|
||||
{
|
||||
if (this.hidable && string.Equals(other.gameObject.tag, "MainCamera"))
|
||||
{
|
||||
int num = 0;
|
||||
HidablePart[] array = this.hidableGroup;
|
||||
int length = array.Length;
|
||||
if (num < length)
|
||||
{
|
||||
HidablePart hidablePart = array[num];
|
||||
hidablePart.StopAllCoroutines();
|
||||
int num2;
|
||||
HidablePart.<hideInterpolation>d__9 <hideInterpolation>d__ = new HidablePart.<hideInterpolation>d__9(num2);
|
||||
num2 = 0;
|
||||
<hideInterpolation>d__.<>4__this = hidablePart;
|
||||
Coroutine coroutine = hidablePart.StartCoroutine(<hideInterpolation>d__);
|
||||
num++;
|
||||
}
|
||||
ParticleSystem[] array2 = this.particlesGroup;
|
||||
int length2 = array2.Length;
|
||||
if (num < length2)
|
||||
{
|
||||
array2[num].Stop();
|
||||
num++;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06002E6A RID: 11882 RVA: 0x00063014 File Offset: 0x00061214
|
||||
[Token(Token = "0x6002E6A")]
|
||||
[Address(RVA = "0x117C920", Offset = "0x117B720", VA = "0x18117C920")]
|
||||
private void OnTriggerExit(Collider other)
|
||||
{
|
||||
if (this.hidable && string.Equals(other.gameObject.tag, "MainCamera"))
|
||||
{
|
||||
HidablePart[] array = this.hidableGroup;
|
||||
int num = 0;
|
||||
int num2 = 0;
|
||||
int length = array.Length;
|
||||
if (num2 < length)
|
||||
{
|
||||
HidablePart hidablePart = array[num];
|
||||
hidablePart.StopAllCoroutines();
|
||||
int num3;
|
||||
HidablePart.<unhideInterpolation>d__8 <unhideInterpolation>d__ = new HidablePart.<unhideInterpolation>d__8(num3);
|
||||
num3 = 0;
|
||||
<unhideInterpolation>d__.<>4__this = hidablePart;
|
||||
Coroutine coroutine = hidablePart.StartCoroutine(<unhideInterpolation>d__);
|
||||
num++;
|
||||
}
|
||||
ParticleSystem[] array2 = this.particlesGroup;
|
||||
int num4 = 0;
|
||||
int num5 = 0;
|
||||
int length2 = array2.Length;
|
||||
if (num5 < length2)
|
||||
{
|
||||
array2[num4].Play();
|
||||
num4++;
|
||||
}
|
||||
this.collisionEntriesCounter = (int)((ulong)0L);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06002E6B RID: 11883 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E6B")]
|
||||
[Address(RVA = "0x297F00", Offset = "0x296D00", VA = "0x180297F00")]
|
||||
private void Update()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E6C RID: 11884 RVA: 0x000630D4 File Offset: 0x000612D4
|
||||
[Token(Token = "0x6002E6C")]
|
||||
[Address(RVA = "0x117CC10", Offset = "0x117BA10", VA = "0x18117CC10")]
|
||||
public HideGroup()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04003741 RID: 14145
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4003741")]
|
||||
public bool hidable = true;
|
||||
|
||||
// Token: 0x04003742 RID: 14146
|
||||
[FieldOffset(Offset = "0x19")]
|
||||
[Token(Token = "0x4003742")]
|
||||
public bool disableParentGeo;
|
||||
|
||||
// Token: 0x04003743 RID: 14147
|
||||
[FieldOffset(Offset = "0x1C")]
|
||||
[Token(Token = "0x4003743")]
|
||||
private int collisionEntriesCounter;
|
||||
|
||||
// Token: 0x04003744 RID: 14148
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4003744")]
|
||||
private HidablePart[] hidableGroup;
|
||||
|
||||
// Token: 0x04003745 RID: 14149
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4003745")]
|
||||
private ParticleSystem[] particlesGroup;
|
||||
|
||||
// Token: 0x04003746 RID: 14150
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x4003746")]
|
||||
private Renderer rendererComponent;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,129 @@
|
||||
using System;
|
||||
using System.Collections;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
|
||||
namespace commanastationwww.eternaltemple
|
||||
{
|
||||
// Token: 0x02000587 RID: 1415
|
||||
[Token(Token = "0x2000587")]
|
||||
public class HideSelf : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E6D RID: 11885 RVA: 0x000630F0 File Offset: 0x000612F0
|
||||
[Token(Token = "0x6002E6D")]
|
||||
[Address(RVA = "0x117CE10", Offset = "0x117BC10", VA = "0x18117CE10")]
|
||||
private void Start()
|
||||
{
|
||||
Material material = base.GetComponent<Renderer>().GetMaterial();
|
||||
this.mat = material;
|
||||
float @float = this.mat.GetFloat("_Cutoff");
|
||||
this.currentAlpha = @float;
|
||||
}
|
||||
|
||||
// Token: 0x06002E6E RID: 11886 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E6E")]
|
||||
[Address(RVA = "0x117CF40", Offset = "0x117BD40", VA = "0x18117CF40")]
|
||||
private IEnumerator unideInterpolation()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E6F RID: 11887 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E6F")]
|
||||
[Address(RVA = "0x117CED0", Offset = "0x117BCD0", VA = "0x18117CED0")]
|
||||
private IEnumerator hideInterpolation()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E70 RID: 11888 RVA: 0x00063130 File Offset: 0x00061330
|
||||
[Token(Token = "0x6002E70")]
|
||||
[Address(RVA = "0x117CC20", Offset = "0x117BA20", VA = "0x18117CC20")]
|
||||
private void OnTriggerEnter(Collider other)
|
||||
{
|
||||
if (this.hidable)
|
||||
{
|
||||
if (string.Equals(other.gameObject.tag, "MainCamera"))
|
||||
{
|
||||
}
|
||||
base.StopAllCoroutines();
|
||||
int num;
|
||||
HideSelf.<hideInterpolation>d__9 <hideInterpolation>d__ = new HideSelf.<hideInterpolation>d__9(num);
|
||||
num = 0;
|
||||
<hideInterpolation>d__.<>4__this = this;
|
||||
Coroutine coroutine = base.StartCoroutine(<hideInterpolation>d__);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06002E71 RID: 11889 RVA: 0x00063184 File Offset: 0x00061384
|
||||
[Token(Token = "0x6002E71")]
|
||||
[Address(RVA = "0x117CD10", Offset = "0x117BB10", VA = "0x18117CD10")]
|
||||
private void OnTriggerExit(Collider other)
|
||||
{
|
||||
if (this.hidable)
|
||||
{
|
||||
if (string.Equals(other.gameObject.tag, "MainCamera"))
|
||||
{
|
||||
}
|
||||
int num = this.collisionEntriesCounter;
|
||||
base.StopAllCoroutines();
|
||||
int num2;
|
||||
HideSelf.<unideInterpolation>d__8 <unideInterpolation>d__ = new HideSelf.<unideInterpolation>d__8(num2);
|
||||
num2 = 0;
|
||||
<unideInterpolation>d__.<>4__this = this;
|
||||
Coroutine coroutine = base.StartCoroutine(<unideInterpolation>d__);
|
||||
this.collisionEntriesCounter = (int)((ulong)0L);
|
||||
}
|
||||
}
|
||||
|
||||
// Token: 0x06002E72 RID: 11890 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E72")]
|
||||
[Address(RVA = "0x297F00", Offset = "0x296D00", VA = "0x180297F00")]
|
||||
private void Update()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E73 RID: 11891 RVA: 0x000631E8 File Offset: 0x000613E8
|
||||
[Token(Token = "0x6002E73")]
|
||||
[Address(RVA = "0x117CEB0", Offset = "0x117BCB0", VA = "0x18117CEB0")]
|
||||
public HideSelf()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04003747 RID: 14151
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4003747")]
|
||||
private int collisionEntriesCounter;
|
||||
|
||||
// Token: 0x04003748 RID: 14152
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4003748")]
|
||||
private Material mat;
|
||||
|
||||
// Token: 0x04003749 RID: 14153
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4003749")]
|
||||
private float currentAlpha;
|
||||
|
||||
// Token: 0x0400374A RID: 14154
|
||||
[FieldOffset(Offset = "0x2C")]
|
||||
[Token(Token = "0x400374A")]
|
||||
public bool hidable = true;
|
||||
|
||||
// Token: 0x0400374B RID: 14155
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x400374B")]
|
||||
public float hidingSpeed = 3f;
|
||||
|
||||
// Token: 0x0400374C RID: 14156
|
||||
[FieldOffset(Offset = "0x34")]
|
||||
[Token(Token = "0x400374C")]
|
||||
public float minAlpha;
|
||||
|
||||
// Token: 0x0400374D RID: 14157
|
||||
[FieldOffset(Offset = "0x38")]
|
||||
[Token(Token = "0x400374D")]
|
||||
public float maxAlpha = 1f;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
|
||||
namespace commanastationwww.eternaltemple
|
||||
{
|
||||
// Token: 0x0200058A RID: 1418
|
||||
[Token(Token = "0x200058A")]
|
||||
public class Move : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E80 RID: 11904 RVA: 0x000632C8 File Offset: 0x000614C8
|
||||
[Token(Token = "0x6002E80")]
|
||||
[Address(RVA = "0xBD1470", Offset = "0xBD0270", VA = "0x180BD1470")]
|
||||
private void Start()
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (06002E80)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Void commanastationwww.eternaltemple.Move::Start()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{; Block_0:; stloc:CharacterController(var_0_06, call:CharacterController(Component::GetComponent, ldloc:Move[exp:Component](this))); stfld:CharacterController(Move::character, ldloc:Move(this), ldloc:CharacterController(var_0_06)); };
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1810
|
||||
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 344
|
||||
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 1618
|
||||
*/;
|
||||
}
|
||||
|
||||
// Token: 0x06002E81 RID: 11905 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E81")]
|
||||
[Address(RVA = "0xBD14C0", Offset = "0xBD02C0", VA = "0x180BD14C0")]
|
||||
private void Update()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E82 RID: 11906 RVA: 0x000632E4 File Offset: 0x000614E4
|
||||
[Token(Token = "0x6002E82")]
|
||||
[Address(RVA = "0xBD18B0", Offset = "0xBD06B0", VA = "0x180BD18B0")]
|
||||
public Move()
|
||||
{
|
||||
float z = Vector3.zero.z;
|
||||
this.destination.z = z;
|
||||
base..ctor();
|
||||
}
|
||||
|
||||
// Token: 0x04003754 RID: 14164
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4003754")]
|
||||
private float speed = 7f;
|
||||
|
||||
// Token: 0x04003755 RID: 14165
|
||||
[FieldOffset(Offset = "0x1C")]
|
||||
[Token(Token = "0x4003755")]
|
||||
private float gravity = 800f;
|
||||
|
||||
// Token: 0x04003756 RID: 14166
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4003756")]
|
||||
private float horizontalMovement;
|
||||
|
||||
// Token: 0x04003757 RID: 14167
|
||||
[FieldOffset(Offset = "0x24")]
|
||||
[Token(Token = "0x4003757")]
|
||||
private float verticalMovement;
|
||||
|
||||
// Token: 0x04003758 RID: 14168
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4003758")]
|
||||
private CharacterController character;
|
||||
|
||||
// Token: 0x04003759 RID: 14169
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x4003759")]
|
||||
private Vector3 destination;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
|
||||
namespace commanastationwww.multistorydungeons
|
||||
{
|
||||
// Token: 0x0200057A RID: 1402
|
||||
[Token(Token = "0x200057A")]
|
||||
public class DisableMeshAtRuntime : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E30 RID: 11824 RVA: 0x000629A0 File Offset: 0x00060BA0
|
||||
[Token(Token = "0x6002E30")]
|
||||
[Address(RVA = "0x13CF9E0", Offset = "0x13CE7E0", VA = "0x1813CF9E0")]
|
||||
private void Start()
|
||||
{
|
||||
Renderer component = base.GetComponent<Renderer>();
|
||||
int num = 0;
|
||||
component.enabled = num != 0;
|
||||
}
|
||||
|
||||
// Token: 0x06002E31 RID: 11825 RVA: 0x000629C4 File Offset: 0x00060BC4
|
||||
[Token(Token = "0x6002E31")]
|
||||
[Address(RVA = "0x3088F0", Offset = "0x3076F0", VA = "0x1803088F0")]
|
||||
public DisableMeshAtRuntime()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
using UnityEngine.UI;
|
||||
|
||||
namespace commanastationwww.multistorydungeons
|
||||
{
|
||||
// Token: 0x0200057B RID: 1403
|
||||
[Token(Token = "0x200057B")]
|
||||
public class FPScounter : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E32 RID: 11826 RVA: 0x000629D8 File Offset: 0x00060BD8
|
||||
[Token(Token = "0x6002E32")]
|
||||
[Address(RVA = "0x4BED00", Offset = "0x4BDB00", VA = "0x1804BED00")]
|
||||
private void Start()
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (06002E32)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Void commanastationwww.multistorydungeons.FPScounter::Start()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{; Block_0:; stloc:Text(var_0_06, call:Text(Component::GetComponent, ldloc:FPScounter[exp:Component](this))); stfld:Text(FPScounter::textFpsCounter, ldloc:FPScounter(this), ldloc:Text(var_0_06)); };
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1810
|
||||
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 344
|
||||
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 1618
|
||||
*/;
|
||||
}
|
||||
|
||||
// Token: 0x06002E33 RID: 11827 RVA: 0x000629F4 File Offset: 0x00060BF4
|
||||
[Token(Token = "0x6002E33")]
|
||||
[Address(RVA = "0x4BEDA0", Offset = "0x4BDBA0", VA = "0x1804BEDA0")]
|
||||
private void Update()
|
||||
{
|
||||
float num = this.timeleft;
|
||||
float deltaTime = Time.deltaTime;
|
||||
this.timeleft = num;
|
||||
float timeScale = Time.timeScale;
|
||||
float deltaTime2 = Time.deltaTime;
|
||||
int num2 = this.frames;
|
||||
num2++;
|
||||
this.frames = num2;
|
||||
this.accum = timeScale;
|
||||
string text = string.Format("{0:F2} FPS", num2);
|
||||
this.textFpsCounter.text = text;
|
||||
float num3 = this.updateInterval;
|
||||
this.timeleft = num3;
|
||||
int num4 = 0;
|
||||
this.accum = (float)num4;
|
||||
}
|
||||
|
||||
// Token: 0x06002E34 RID: 11828 RVA: 0x00062A88 File Offset: 0x00060C88
|
||||
[Token(Token = "0x6002E34")]
|
||||
[Address(RVA = "0x4BECF0", Offset = "0x4BDAF0", VA = "0x1804BECF0")]
|
||||
public FPScounter()
|
||||
{
|
||||
}
|
||||
|
||||
// Token: 0x04003715 RID: 14101
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x4003715")]
|
||||
public float updateInterval = 0.5f;
|
||||
|
||||
// Token: 0x04003716 RID: 14102
|
||||
[FieldOffset(Offset = "0x1C")]
|
||||
[Token(Token = "0x4003716")]
|
||||
private float accum;
|
||||
|
||||
// Token: 0x04003717 RID: 14103
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x4003717")]
|
||||
private int frames;
|
||||
|
||||
// Token: 0x04003718 RID: 14104
|
||||
[FieldOffset(Offset = "0x24")]
|
||||
[Token(Token = "0x4003718")]
|
||||
private float timeleft;
|
||||
|
||||
// Token: 0x04003719 RID: 14105
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x4003719")]
|
||||
private Text textFpsCounter;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,81 @@
|
||||
using System;
|
||||
using Cpp2IlInjected;
|
||||
using UnityEngine;
|
||||
|
||||
namespace commanastationwww.multistorydungeons
|
||||
{
|
||||
// Token: 0x0200057C RID: 1404
|
||||
[Token(Token = "0x200057C")]
|
||||
public class Move : MonoBehaviour
|
||||
{
|
||||
// Token: 0x06002E35 RID: 11829 RVA: 0x00062AA8 File Offset: 0x00060CA8
|
||||
[Token(Token = "0x6002E35")]
|
||||
[Address(RVA = "0xBD1420", Offset = "0xBD0220", VA = "0x180BD1420")]
|
||||
private void Start()
|
||||
{
|
||||
/*
|
||||
An exception occurred when decompiling this method (06002E35)
|
||||
|
||||
ICSharpCode.Decompiler.DecompilerException: Error decompiling System.Void commanastationwww.multistorydungeons.Move::Start()
|
||||
|
||||
---> System.Exception: Basic block has to end with unconditional control flow.
|
||||
{; Block_0:; stloc:CharacterController(var_0_06, call:CharacterController(Component::GetComponent, ldloc:Move[exp:Component](this))); stfld:CharacterController(Move::character, ldloc:Move(this), ldloc:CharacterController(var_0_06)); };
|
||||
at ICSharpCode.Decompiler.ILAst.ILAstOptimizer.FlattenBasicBlocks(ILNode node) in D:\a\dnSpy\dnSpy\Extensions\ILSpy.Decompiler\ICSharpCode.Decompiler\ICSharpCode.Decompiler\ILAst\ILAstOptimizer.cs:line 1810
|
||||
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 344
|
||||
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 1618
|
||||
*/;
|
||||
}
|
||||
|
||||
// Token: 0x06002E36 RID: 11830 RVA: 0x000020D3 File Offset: 0x000002D3
|
||||
[Token(Token = "0x6002E36")]
|
||||
[Address(RVA = "0xBD1690", Offset = "0xBD0490", VA = "0x180BD1690")]
|
||||
private void Update()
|
||||
{
|
||||
throw new AnalysisFailedException("CPP2IL failed to recover any usable IL for this method.");
|
||||
}
|
||||
|
||||
// Token: 0x06002E37 RID: 11831 RVA: 0x00062AC4 File Offset: 0x00060CC4
|
||||
[Token(Token = "0x6002E37")]
|
||||
[Address(RVA = "0xBD1860", Offset = "0xBD0660", VA = "0x180BD1860")]
|
||||
public Move()
|
||||
{
|
||||
float z = Vector3.zero.z;
|
||||
this.destination.z = z;
|
||||
base..ctor();
|
||||
}
|
||||
|
||||
// Token: 0x0400371A RID: 14106
|
||||
[FieldOffset(Offset = "0x18")]
|
||||
[Token(Token = "0x400371A")]
|
||||
private float speed = 7f;
|
||||
|
||||
// Token: 0x0400371B RID: 14107
|
||||
[FieldOffset(Offset = "0x1C")]
|
||||
[Token(Token = "0x400371B")]
|
||||
private float gravity = 1000f;
|
||||
|
||||
// Token: 0x0400371C RID: 14108
|
||||
[FieldOffset(Offset = "0x20")]
|
||||
[Token(Token = "0x400371C")]
|
||||
private float horizontalMovement;
|
||||
|
||||
// Token: 0x0400371D RID: 14109
|
||||
[FieldOffset(Offset = "0x24")]
|
||||
[Token(Token = "0x400371D")]
|
||||
private float verticalMovement;
|
||||
|
||||
// Token: 0x0400371E RID: 14110
|
||||
[FieldOffset(Offset = "0x28")]
|
||||
[Token(Token = "0x400371E")]
|
||||
private CharacterController character;
|
||||
|
||||
// Token: 0x0400371F RID: 14111
|
||||
[FieldOffset(Offset = "0x30")]
|
||||
[Token(Token = "0x400371F")]
|
||||
private Vector3 destination;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user