Remove Games Remove Point and Click Remove Scripting Remove Tile
article thumbnail

How to Make a Tabletop Simulator Demo of Your Board Game

Brand Game Development

Need help on your board game? Join my community of over 2,000 game developers, artists, and passionate creators. I’d like to explain to you exactly how to create a demo of your board game on Tabletop Simulator, but first let’s discuss what I perceive as its five main benefits: 1. Click Table on the menu.

article thumbnail

Godot Tactics RPG – 01. Intro & Setup

The Liquid Fire

I’ve been dabbling at creating my own game for ages, starting with RPG maker back when the only english version was not officially available. From there I used Sphere, an open source 2d Engine that scripted in javascript. You can download Godot here – [link] Click the link to Download the 4.x As for Unity.

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

Godot Tactics RPG – 05. Pathfinding

The Liquid Fire

As we need to find all possible tiles a unit can move to, A* quickly bogs down because it is designed to find a single path from point A to B as quickly as it can, but finding a path from A to B-Z is a lot of individual paths. We’ll add this to the same script as the Dirs enum. The breadcrumbs mentioned earlier.

Tile 59
article thumbnail

My Elephant in the Room, Part 1

Designer Notes

I gave an Old World postmortem at GDC 2022, which is available on YouTube: However, I fully scripted the talk ahead of time, so I decided it would be worth taking the time to post the slides online, in three parts to have mercy on your browser. Here are the games that I’ve worked on. A Civ-like, so to speak.

Tile 98
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. So I decided to keep the visual style of this project as a simple 2D game and to make my boards with a Tilemap so that I could demonstrate solutions for those questions. It has everything we did in the previous lesson ready to go.

Tile 52
article thumbnail

Godot Tactics RPG – 03. Input & Camera

The Liquid Fire

Setting Up Input Mapping I think the biggest things in Godot that are a bit different with input are that the mouse scroll wheel is considered a button click. One click for each ‘tick’ the wheel scrolls. Next we need to create a new folder under Scripts. This script will be pretty simple. BoardCreator.

Tile 59
article thumbnail

Godot Tactics RPG – 02. Board Generator

The Liquid Fire

We’ll create everything we need to build our tiles and generate a board or two. If you want to copy code, click the button in the corner of any snippet Toggle RAW Code. “”” this is a comment “”” Although it looks like this can only be used in certain parts of your scripts. Vector2i. (I

Tile 52