using System; using Cpp2IlInjected; using UnityEngine; using UnityEngine.UI; namespace commanastationwww.eternaltemple { // Token: 0x0200058A RID: 1418 [Token(Token = "0x200058A")] public class FPScounter : MonoBehaviour { // Token: 0x06002E81 RID: 11905 RVA: 0x00062F04 File Offset: 0x00061104 [Token(Token = "0x6002E81")] [Address(RVA = "0x4CCE50", Offset = "0x4CB650", VA = "0x1804CCE50")] private void Start() { /* An exception occurred when decompiling this method (06002E81) 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: 0x06002E82 RID: 11906 RVA: 0x00062F20 File Offset: 0x00061120 [Token(Token = "0x6002E82")] [Address(RVA = "0x4CCFA0", Offset = "0x4CB7A0", VA = "0x1804CCFA0")] 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: 0x06002E83 RID: 11907 RVA: 0x00062FB4 File Offset: 0x000611B4 [Token(Token = "0x6002E83")] [Address(RVA = "0x4CCDF0", Offset = "0x4CB5F0", VA = "0x1804CCDF0")] public FPScounter() { } // Token: 0x04003771 RID: 14193 [FieldOffset(Offset = "0x18")] [Token(Token = "0x4003771")] public float updateInterval = 0.5f; // Token: 0x04003772 RID: 14194 [FieldOffset(Offset = "0x1C")] [Token(Token = "0x4003772")] private float accum; // Token: 0x04003773 RID: 14195 [FieldOffset(Offset = "0x20")] [Token(Token = "0x4003773")] private int frames; // Token: 0x04003774 RID: 14196 [FieldOffset(Offset = "0x24")] [Token(Token = "0x4003774")] private float timeleft; // Token: 0x04003775 RID: 14197 [FieldOffset(Offset = "0x28")] [Token(Token = "0x4003775")] private Text textFpsCounter; } }