1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-10-17 15:07:38 +00:00

Deprecate ITurtleAccess.getVisual{Position,Yaw}

This commit is contained in:
Jonathan Coates
2023-06-08 18:32:00 +01:00
parent ef19988c37
commit e157978afc
2 changed files with 5 additions and 0 deletions

View File

@@ -75,7 +75,9 @@ public interface ITurtleAccess {
* @param f The subframe fraction.
* @return A vector containing the floating point co-ordinates at which the turtle resides.
* @see #getVisualYaw(float)
* @deprecated Will be removed in 1.20.
*/
@Deprecated(forRemoval = true)
Vec3 getVisualPosition(float f);
/**
@@ -84,7 +86,9 @@ public interface ITurtleAccess {
* @param f The subframe fraction.
* @return The yaw the turtle is facing.
* @see #getVisualPosition(float)
* @deprecated Will be removed in 1.20.
*/
@Deprecated(forRemoval = true)
float getVisualYaw(float f);
/**