im having an issue with a random black semi transparent box when look at the floor idk what it is
public class MoveNoise : Component { float seed; protected override void OnEnabled() { base.OnEnabled(); seed = Random.Shared.Float( 0, 10000 ); } protected override void OnUpdate() { DebugOverlay.ScreenText( 20, "Rocket Launcher Exists" ); var offset = Noise.FbmVector( 3, seed + Time.Now * 100.0f ); WorldPosition += offset * Time.Delta * 100.0f; } }
why does it feel awful to look around? there's like half a second of delay and it feels like 20 fps, even though my fps is above 60
why does it feel awful to look around? there's like half a second of delay and it feels like 20 fps, even though my fps is above 60
people have been telling me how much better Bolt Sandbox runs than Sandbox after I rewrote some of my camera code. that could be the culprit
Can you explain it?