Godot Version
4.2
Question
I recently started learning Godot, i want to make a simple puzzle game where you pick up items and set them down, so far i haven’t had much issues except for recently, see instead of making every item you can interact with a node/object/scene/what-have-you i decided it would instead be faster if i just made every item a tile with properties, which indeed has made it easier, except for the fact that i want my playable character to actually be shown holding the item, which has caused some issues as i can’t seem to find the proper function.
After some research i found a function on Godot 3 that did exactly that (tile_get_texture i think it was called), but this function was apparently removed and i can’t seem to find an alternative despite how much i’ve searched, so far i’ve used the online documentation that’s integrated in the godot engine but neither TileSet, TileMap or TileData seem to have a function that specifically return a texture variable, i imagine there is a solution and i would like to know it, but if there isn’t i’ll just have to switch to using actual nodes, thanks in advance.