Laser Utils

Minecraft Forge 1.20.1 / 1.21.1 Utility Library

File Details

laser_utils-1.21.1-5.0.0

  • R
  • Jan 23, 2025
  • 157.61 KB
  • 18
  • 1.21.1
  • Forge

File Name

laser_utils-5.0.0.jar

Supported Versions

  • 1.21.1

Curse Maven Snippet

Forge

implementation "curse.maven:laser-utils-1168168:6117784"
Curse Maven does not yet support mods that have disabled 3rd party sharing

Learn more about Curse Maven

Version 5.0.0

  • Fixed duration abilities throwing exceptions when duration is over
  • RayCast fixes:
    • Getting the BlockPos in the RayCast has been replaced with getting a Vec3 that contains exact coordinates, properly depicting the current position in a RayCast
    • The RayCast class has been replaced with three different classes:
    • AbstractRayCast: The root class of all RayCast classes
    • ClientRayCast: A client-side version of the RayCast that takes in a ClientLevel
    • ServerRayCast: A server-side version of the RayCast that takes in a ServerLevel (very similar to the pre-existing RayCast class)
    • All subclasses must define the AbstractRayCast#displayparticles method for how to display particles at each step of the RayCast.