Fading Coder

One Final Commit for the Last Sprint

Rendering Chinese Text in LibGDX

LibGDX's default text rendering relies on the BitmapFont class, which uses pre-generated font atlases. The default constructor loads: public BitmapFont() { this(Gdx.files.classpath("com/badlogic/gdx/utils/arial-15.fnt"), Gdx.files.classpath("com/badlogic/gdx/utils/arial-15.png"),...

Building a Text-Based Survival Adventure Game in Python

A text-based survival adventure game can be created using Python by implementing a branching narrative structure with interactive choices, mini-games, and scoring mechanics. The game simulates a post-apocalyptic scenario where players make decisions that affect their survival outcome. Core Game Stru...

Integrating Physics Body Editor with Box2D for Efficient Game Development in LibGDX

Box2D is a widely-used 2D physics engine available in multiple prgoramming languages. LibGDX provides a well-encapsulated and efficient Java wrapper for Box2D, simplifying its integration. However, creating complex physical bodies programmatically can be tedious. The Physics Body Editor tool address...