Remove Demo Remove Scripting Remove Sprite Remove Tile
article thumbnail

D20 RPG – Combatants

The Liquid Fire

We will add animated sprites to represent both a hero and monster. We will also provide a tile based room for them to fight in. It includes a collection of prefabs, scripts and sprites that we can use to play with. New Sprites There are three new sprites included.

Sprite 52
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
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

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

Neo6502 Review

Retro Game Coders

Mhz with all signals available via connector RP2040 with 2MB of SPI Flash, 64k RAM available to the processor HDMI output with 320 x 240 256 colour display, higher resolutions appear on Apple/Oric emulators 20k Graphics RAM for tiles and 128 sprites up to 32×32 pixels.

Demo 137
article thumbnail

D20 RPG – Positional Awareness

The Liquid Fire

As a side benefit, you can look at the script in the inspector and see the Entity’s id which may be useful for a variety of debugging purposes. Open the EntityViewProvider script and modify the SetView method to look like this: public void SetView(GameObject view, Entity entity, ViewZone zone) { if (!mapping.ContainsKey(zone))

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. Construct : seems ok, and I think I could've gotten used to the visual block scripting, but overall the pricing and licensing feels weirdly restrictive. and no WASM.)

Sprite 52
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. Create a new folder at Assets -> Scripts -> Component named Position.