Package foundry.veil.api.client.render
Class VeilLevelPerspectiveRenderer
java.lang.Object
foundry.veil.api.client.render.VeilLevelPerspectiveRenderer
Renders the level from different perspectives.
-
Method Summary
Modifier and TypeMethodDescriptionstatic int
getID()
static boolean
static AdvancedFbo
render
(AdvancedFbo framebuffer, @Nullable net.minecraft.world.entity.Entity cameraEntity, org.joml.Matrix4fc modelView, org.joml.Matrix4fc projection, org.joml.Vector3dc cameraPosition, org.joml.Quaternionfc cameraOrientation, float renderDistance, net.minecraft.client.DeltaTracker deltaTracker, boolean drawLights) Renders the level from another POV.static AdvancedFbo
render
(AdvancedFbo framebuffer, org.joml.Matrix4fc modelView, org.joml.Matrix4fc projection, org.joml.Vector3dc cameraPosition, org.joml.Quaternionfc cameraOrientation, float renderDistance, net.minecraft.client.DeltaTracker deltaTracker, boolean drawLights) Renders the level from another POV.
-
Method Details
-
render
public static AdvancedFbo render(AdvancedFbo framebuffer, org.joml.Matrix4fc modelView, org.joml.Matrix4fc projection, org.joml.Vector3dc cameraPosition, org.joml.Quaternionfc cameraOrientation, float renderDistance, net.minecraft.client.DeltaTracker deltaTracker, boolean drawLights) Renders the level from another POV. Automatically prevents circular render references.- Parameters:
framebuffer
- The framebuffer to draw intomodelView
- The base modelview matrixprojection
- The projection matrixcameraPosition
- The position of the cameracameraOrientation
- The orientation of the camerarenderDistance
- The chunk render distancedeltaTracker
- The delta tracker instancedrawLights
- Whether to draw lights to the scene after- Returns:
- The full framebuffer including dynamic buffers. This framebuffer is owned by the render system
-
render
public static AdvancedFbo render(AdvancedFbo framebuffer, @Nullable @Nullable net.minecraft.world.entity.Entity cameraEntity, org.joml.Matrix4fc modelView, org.joml.Matrix4fc projection, org.joml.Vector3dc cameraPosition, org.joml.Quaternionfc cameraOrientation, float renderDistance, net.minecraft.client.DeltaTracker deltaTracker, boolean drawLights) Renders the level from another POV. Automatically prevents circular render references.- Parameters:
framebuffer
- The framebuffer to draw intocameraEntity
- The entity to draw the camera in relation to. If unsure userender(AdvancedFbo, Matrix4fc, Matrix4fc, Vector3dc, Quaternionfc, float, DeltaTracker, boolean)
modelView
- The base modelview matrixprojection
- The projection matrixcameraPosition
- The position of the cameracameraOrientation
- The orientation of the camerarenderDistance
- The chunk render distancedeltaTracker
- The delta tracker instancedrawLights
- Whether to draw lights to the scene after- Returns:
- The full framebuffer including dynamic buffers. This framebuffer is owned by the render system
-
isRenderingPerspective
public static boolean isRenderingPerspective()- Returns:
- Whether a perspective is being rendered
-
getID
@Internal public static int getID()
-