Search found 2 matches

by ELT7902
Mon Oct 17, 2022 6:46 pm
Forum: Support and Development
Topic: How to access custom properties from Tiled
Replies: 2
Views: 1758

Re: How to access custom properties from Tiled

I ended up finding a better way to do it. Here is the new working code: function Player:filter(other) if other.type == "OneWay" then if self.y + self.height <= other.y then return "slide" end else return "slide" end end For anyone who stumbles upon this, I just gave the...
by ELT7902
Sun Oct 16, 2022 3:40 pm
Forum: Support and Development
Topic: How to access custom properties from Tiled
Replies: 2
Views: 1758

How to access custom properties from Tiled

Hi everyone, I am new to the forums, and this is my first post. So I'm using Bump and STI for this project. I have an object layer in Tiled named "One Way", that will represent jump-through platforms. It has the custom property "collidable", which allows the layer to be considere...