Open BlackAsLight opened 1 year ago
The kinetic augment launch method does not actually target a certain number of blocks to travel, but increases your velocity. "1 unit of power" could approximately be described as "an increase of 1 meter/tick" (1 meter being 1 block here, and 1 tick being 0.05 seconds.) You can get this value by checking the motionX
, motionY
, and motionZ
values in getMetaOwner()
.
A couple things to note here:
I am struggling to find any documentation on the launch method that tells me how much power 1 unit of power is.
mod.launch(0, -90, 1)
Doesn't seem to be enough for a block whilemod.launch(0, -90, 2)
is a lot more than 2 blocks.