Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Chris' Tutorials

24
Posts
226
Followers
33
Following
A member registered Mar 04, 2017 · View creator page →

Creator of

Recent community posts

(1 edit)

Another thing you and anyone else having the issue could try is going to placeable_instance.gd and editing the save function from

```func save(p_include_uid : bool) -> Dictionary:```

to

func save(p_include_uid : bool = false) -> Dictionary:

So it has a default value temporarily. This seems to be a demo specific bug but shouldn't effect regular plugin use. I will be sure this is patched for the next release which is soon.

(1 edit)

Hoping for within a week or two if all goes well. I'll post on Itch, Patreon, Kofi, and probably make a YouTube video or two as soon as it's ready.

Working on it right now for the next update. Will include moving objects as well through the new Manipulation System.

(1 edit)

Here's the main updated setup video for 4.0. Definitely back your project up before upgrading. 4.0 has several renamed and upgraded resources so you'll see some empty properties in the node inspectors (BuildingState instead of BuildingSignalBus for instance). Placeables themselves are mostly the same. There is also an updated setup guide in the README.md let me know if you have any issues (Discord invite link also in the README)

Looks very doable. I have it on my todo list but working on some other core features first. Thanks for the great examples.

I plan to implement for TileMapLayer and keep backwards compatibility for TileMap if possible (have to experiment more with #region for whether that can be in the same plug-in version)

There's not direct object stacking in isometric ATM. I can add it to my requested features list though. You're looking for multiple objects to occupy the same square while visually being stacked on top of each other right? (Disgaea turn based tactics comes to mind where you could pick up allies or enemies) If you have an example link, that would help - thanks.

In process of a move at the moment but if you ping me on https://discord.com/invite/vxMuaeZd I can help out if you run into any other issues next week

Not yet but I will be working on it soon for an upcoming release update. Right now I'm working on making saving / loading with instanced scenes easier but removing and moving objects comes right after that. I will have 4.0 out soon for that and several other features and then 4.1 should be moving / removing after that. I'd like to put in the ability to recover resources spent to build in demolition as well.

Watch for updates @ https://chris-tutorials.itch.io/grid-building-godot/devlog. Should be posting soon.

Ping me on discord here and I'll help sort it out. Screenshots will help, thanks. https://discord.gg/SEueCPFN

(4 edits)

UPDATE:

  • Removed the null placeable reference in top down demo. Should work again. Updated demo uploaded grid_building_demo_project_3.2.1
  • Added a test to check demos for null placeable references on the UI.
  • Moved testing folder from addons/grid_builder_gut_testing to test for clarity. These tests validate that the plugin should run correctly and shouldn't be needed in your actual project (but feel free to copy them in and run them with Godot Unit Test (GUT) if you know how)

The gut testing 'addon' is just for running unit tests within the demo project to test the real addon's functionality (I probably will just move this to a folder called test in the demo project in the future) I will check the mentioned collision problems and update the empty / null placeable in the demo asap.

Just added the new version that supports isometric. You'll want to take the rule_check_indicator_isometric.tscn and adjust it's size to your tile_map. You can check the demo for how to set it up for now and I'll be making a Isometric video tutorial.

I added Isometric support. For now see the demo but I'll make a video tutorial for setting up Isometric mode.

Good idea for a feature. I will add it to my list - something I can implement at the same time I do object deletion / destroy. Working on finishing up testing for isometric mode atm.

I'm currently writing tests for an isometric demo. I had to add support for skew which is still only in my dev version (since isometric use irregularly shaped rectangles). Currently getting collisions to work nicely. If all goes well it will be the next update and there will be a guide on how to use it with isometric.

Thanks it's going to come with an update to the plugin too. Trying to get it out there after this grid builder plugin update I'm working on atm.

(1 edit)

Let me make an isometric test scene and get back to you on it since I haven't made a setup for isometric yet. At the very least, the rule check shape will need to be rotated the isometric angle but let me see if it's as simple as that or if some functions will need to be modded for isometric.

(2 edits)

The demo is now in a secondary download grid_building_inventory-3.1.0.zip. I didn't have the latest demo up there when you posted the question sorry about that! The demos are separate from the main package to reduce clutter from the plugin (and those people's main game projects). Just posted the update to the plugin so I recommend updating while you're at it. I'll have a new tutorial out soon. Let me know if you have any further questions. Thanks!

The WebGL browser standalone? I found certain keys don't work in the standalone (like Esc) so I set F8 as the quit game button. You wanted to pause the game not just exit the game though, right? Do you already have a pause script that works in the editor? If so can you post it on pastebin.com and link me. I'll take a look

Glad to hear it

When you use Debug.Log you have to return an animationClip or return null. The argument exception breaks the code's execution but debug.log only leaves a message in the console.

If you add return null after the debug line then you should be good.

When a function has an AnimationClip return type, it must always either return an animation clip, return null.

It could be that the images are set up with compression or filter on. These are the settings I am using for the BG images. 

The changes I specifically make over the unity defaults ~ Filter Mode: Point(No Filter), Max Size 4096, Compression: None, and Pixels Per Unit 16 (this is just so one grid square = one square on the tileset). I also took the scale of the backgrounds and put it to 4 on X & Y to make it large compared to the game stage.

https://imgur.com/a/AjqhtJk

https://imgur.com/a/1UOIudp

(1 edit)

EDIT: Pack has a custom gatherer character now to use with the tools. It has swing and walk animations (Idle uses first frame of walk)

That's a good idea. I'll see what I can do. I really like the characters from https://limezu.itch.io/moderninteriors but I should have one for this pack since not everyone has that.

What game engine did you go with?

Same problem on Mac Monteray (latest mac update)