You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,sonicether.This addon is amazing.
I found in SEGI.cs, the high setting is 256.I have tried to increase the number to 512 or more.But the result doesn't change.
public enum VoxelResolution
{
low = 128,
high = 256
}
May i ask what i should do?Do i need to modify other related code at the same time?Thanks
The text was updated successfully, but these errors were encountered:
This would double the resolution in each dimension, so VRAM requirements would go up 2^3 = 8 fold. So instead of 512 MB of VRAM, you'd use 4 GB of VRAM just for voxel cone tracing.
You can go a bit higher if you use less vertical resolution but that's not an easy change (that's what we have done in Crowfall).
Hi,sonicether.This addon is amazing.
I found in SEGI.cs, the high setting is 256.I have tried to increase the number to 512 or more.But the result doesn't change.
May i ask what i should do?Do i need to modify other related code at the same time?Thanks
The text was updated successfully, but these errors were encountered: