update ver and readme

This commit is contained in:
RandomityGuy 2022-12-17 23:28:22 +05:30
parent 97d9db8295
commit ba1fd21174
2 changed files with 3 additions and 3 deletions

View file

@ -8,8 +8,8 @@ The browser port supports touch controls, meaning it can be played on mobile dev
### Marble Blast Gold: [Play](https://mbhaxe.netlify.app/)
### Marble Blast Platinum: [Play](https://mbphaxe.netlify.app/)
## Windows
### Marble Blast Gold: [Download](https://github.com/RandomityGuy/MBHaxe/releases/tag/1.1.3)
### Marble Blast Platinum: [Download](https://github.com/RandomityGuy/MBHaxe/releases/tag/1.3.0)
### Marble Blast Gold: [Download](https://github.com/RandomityGuy/MBHaxe/releases/tag/1.1.4)
### Marble Blast Platinum: [Download](https://github.com/RandomityGuy/MBHaxe/releases/tag/1.3.1)
# Why Haxe?
I chose Haxe because its a good language that can target other languages, meaning any Haxe code can be converted and used in Python, C++, Java very easily so that nobody has to take effort in porting the code to different languages, atleast thats what my mindset was when I started it, but unfortunately because of the 3d engine I used, it only compiles to C and Javascript. You will have to isolate the engine specific features yourself if you want to use this for other programming languages.

View file

@ -154,7 +154,7 @@ class MainMenuGui extends GuiImage {
versionText.vertSizing = Bottom;
versionText.position = new Vector(502, 66);
versionText.extent = new Vector(97, 72);
versionText.text.text = "<p align=\"center\">1.3.0</p>";
versionText.text.text = "<p align=\"center\">1.3.1</p>";
this.addChild(versionText);
}
}