Started by
Some troll guy
on
Topic category: Help with Minecraft modding (Java Edition)
Hello! i am making a plane that will keep going on the x axis but idk hot to do it! thx for the help (:
Topic category: Help with Minecraft modding (Java Edition)
Hello! i am making a plane that will keep going on the x axis but idk hot to do it! thx for the help (:
Make an entity with no AI and no Gravity. Then, make a procedure for the entity's update tick.
In the procedure, use the 'Attempt to Override Motion Vector' block to add velocity to the plane. If you just want it to go along the X Axis, tell it to override the X velocity to a positive number. (Somewhere around 3 should probably work.) Keep in mind this will give a constant velocity; if you want your plane to accelerate, you would instead add a small amount of velocity to the entity's current velocity and put this in the Override Motion Vector block instead.
Thx! so much!