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; } }