sbrl / Minetest-WorldEditAdditions

Extra tools and commands to extend WorldEdit for Minetest
https://worldeditadditions.mooncarrot.space/
Mozilla Public License 2.0
16 stars 3 forks source link

cloudwand doesn't work when standing on ladder #66

Open VorTechnix opened 3 years ago

VorTechnix commented 3 years ago

It selects the ladder segment by the players head (if there is one there). This is might be a ray cast issue.

VorTechnix commented 3 years ago

This is definitely a raycast issue. //scloud works fine under same conditions.

sbrl commented 3 years ago

Yeah, this is known bug in our raycaster. It's because worldeditadditions.raycast considers all nodes as full blocks. Fixing this would definitely be helpful, but it's also very complicated. To start on this, we need a way to:

  1. Determine if a given node id has a custom hitbox that needs considering
  2. If so, then retrieve said hitbox in world co-ordinates.