This repository was archived by the owner on Dec 19, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 7 files changed +15
-4
lines changed
Expand file tree Collapse file tree 7 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 4848
4949 <!-- Desktop-specific-->
5050 <window if =" desktop" orientation =" landscape" fullscreen =" false" resizable =" true" vsync =" false" />
51-
51+
5252 <!-- Mobile-specific-->
5353 <window if =" mobile" orientation =" landscape" fullscreen =" true" width =" 0" height =" 0" resizable =" false" />
5454
125125
126126 <haxelib name =" hxdiscord_rpc" if =" DISCORD_ALLOWED" />
127127 <haxelib name =" hxWindowColorMode" if =" desktop" />
128+ <haxelib name =" CompileTime" />
128129 <haxelib name =" flxanimate" />
129130 <haxelib name =" tink_await" />
130131
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ HyperCode Engine comes with several new features and improvements over Psych Eng
8080- Faster garbage collection
8181- A modern C++11 codebase
8282- Many new extensions
83- - Experimental 3D support
83+ - 3D support
8484
8585### ** Is HyperCode Engine a fork of Psych Engine?**
8686
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ haxelib install flixel 5.6.1
1414haxelib install flixel-addons 3.2.2
1515haxelib install flixel-tools 1.5.1
1616haxelib install hxWindowColorMode
17+ haxelib install CompileTime
1718haxelib install hscript-iris 1.1.3
1819haxelib install hscript
1920haxelib install hxp
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ haxelib install flixel 5.6.1
1313haxelib install flixel-addons 3.2.2
1414haxelib install flixel-tools 1.5.1
1515haxelib install hxWindowColorMode
16+ haxelib install CompileTime
1617haxelib install hscript-iris 1.1.3
1718haxelib install hscript
1819haxelib install hxp
Original file line number Diff line number Diff line change @@ -279,8 +279,8 @@ class Main extends Sprite
279279 errMsg + = " ==== CRASH REPORT ====\n " ;
280280 errMsg + = " Engine Version: " + EngineConfig .VERSION + " \n " ;
281281 errMsg + = " Platform: " + #if windows " Windows" #elseif linux " Linux" #elseif mac " Mac" #elseif android " Android" #elseif ios " iOS" #else " Unknown" #end + " \n " ;
282- // errMsg += "Build Date: " + CompileTime.getBuildDate () + "\n";
283- // errMsg += "Build Hash: " + CompileTime.getGitHash () + "\n\n";
282+ errMsg + = " Build Date: " + CompileTime .buildDate () + " \n " ;
283+ errMsg + = " Build Hash: " + CompileTime .buildGitCommitSha () + " \n\n " ;
284284
285285 // Exception stack trace
286286 errMsg + = " ==== STACK TRACE ====\n " ;
@@ -298,6 +298,10 @@ class Main extends Sprite
298298 errMsg + = " Method: " + classname + " ." + method + " \n " ;
299299 case LocalFunction (n ):
300300 errMsg + = " Local Function: " + n + " \n " ;
301+ case Module (m ):
302+ errMsg + = " Module: " + m + " \n " ;
303+ default :
304+ errMsg + = " Unknown: " + stackItem + " \n " ;
301305 }
302306 }
303307
Original file line number Diff line number Diff line change @@ -94,6 +94,7 @@ class Classes {
9494 #end
9595
9696 " Discord" => DiscordClient ,
97+ " CompileTime" => CompileTime ,
9798
9899 " FlxTween" => flixel.tweens. FlxTween ,
99100 " FlxEase" => flixel.tweens. FlxEase ,
Original file line number Diff line number Diff line change @@ -67,7 +67,10 @@ import flixel.group.FlxSpriteGroup;
6767import flixel .group .FlxGroup .FlxTypedGroup ;
6868import flixel .addons .transition .FlxTransitionableState ;
6969
70+ #if windows
7071import hxwindowmode .WindowColorMode ;
72+ #end
73+ import CompileTime ;
7174
7275using StringTools ;
7376#end
You can’t perform that action at this time.
0 commit comments