Remove Demo Remove Feature Remove Sprite Remove Tile
article thumbnail

D20 RPG – Board

The Liquid Fire

A lot of people asked about making 2D maps and how to use different types of tiles like water vs dirt. For this lesson I created a couple of simple images to use for tile maps. This asset will be sort of abstract data, and can be “skinned” with specific tiles at a later point. They are available in this package here.

Tile 52
article thumbnail

Atari ST Programming: A Simple Game in STOS

Retro Game Coders

Now we can move sprites in STOS we need to put things together to see how we can actually begin creating playable games. Along the way we will look at some more new features and concepts so you can understand more of how STOS works versus programming languages and game engines you might be used to. Avoid the Monster.

Sprite 52
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

Neo6502 Review

Retro Game Coders

Neo6502 is a “Modern Retro Computer” – a brand new single board computer that features a real 6502 microprocessor – designed by Olimex. Rather than the original 6502 , it comes with a modern W65C02S on board. w65c02 microprocessor RP2040 A RP2040 provides memory, clock, and peripheral emulation.

Demo 137
article thumbnail

D20 RPG – Pathfinding

The Liquid Fire

In that project, we had some unique challenges thanks to a non-square board where tiles were optional. In addition we had to consider tile heights – and whether or not a unit could jump as high as needed. In contrast, the pathfinding in this lesson will be for a 2D square board with no missing tiles.

Tile 52
article thumbnail

Getting started with HaxeFlixel in 2021

Radiator Blog

The engine should be able to render and simulate 200+ lightweight game objects -- frame-animated sprites with simple collision, no fancy physics or shaders. Most updates within the last year have been small bug fixes, and momentum for big future features has stalled. Reminder: for iOS, that means WebGL 1.0 and no WASM.)

Sprite 52
article thumbnail

D20 RPG – Positional Awareness

The Liquid Fire

Because of the grid-based nature of my game, I position my sprites at whole number coordinate positions like "(2, 3)". Demo Play the game until you reach the Encounter. If you "confirm" on a tile where there is nothing to attack, then the selection indicator will just move back to the hero for you to try again.

article thumbnail

D20 RPG – Stride

The Liquid Fire

There are different actions for moving, and is why you see “Stride” vs “Step” A step is only a single tile of movement and can avoid acts of opportunity, whereas a Stride can move much further, but does provoke acts of opportunity. It holds the combat selection indicator: the sprites, animations, and scripts.