Limitation of Visibility Problem

Hi! :wave:

I am trying to LIMIT player Vision like This :eyes::
image
Red is a radius of Vision
Character is a Character

For now i have tried 2 things:

  • Using Fog
  • Using Unions attached to player

They are both not my Option

Fog is leaving this shadow thing

And Unions have visible vertices

I am trying to get result like THIS:

image

Yeah thats pretty much it

First of all, do not use unions for large objects as they are heavy on performance and large unions can cause many problems, you can simply do this by making a sphere in blender and using the invert faces feature to change what the players see, so from the outside it won’t be seen, but from the inside you can see it, you can set the mesh to be neon black so that it looks just like the image you attached. To move the mesh, either track the position of the player or attach the mesh part to the player. This is the easy way.

If you want to be harsh on yourself, and actually want to have a whole system for it, you can just create a chunk system, where you only load and render those parts inside the player’s current chunk, but in a bit more professional way since you don’t want to render a chunk, you want to render a chunk around the player.

1 Like

I will try it and if it works i will make it as solution :+1:

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.