diff --git a/jme3-core/src/main/java/com/jme3/animation/Bone.java b/jme3-core/src/main/java/com/jme3/animation/Bone.java index 0cddbe5aef..5ea95b7f44 100644 --- a/jme3-core/src/main/java/com/jme3/animation/Bone.java +++ b/jme3-core/src/main/java/com/jme3/animation/Bone.java @@ -671,16 +671,6 @@ public void setUserTransforms(Vector3f translation, Quaternion rotation, Vector3 localScale.multLocal(scale); } - /** - * - * @param translation - - * @param rotation - - * @deprecated use {@link #setUserTransformsInModelSpace(com.jme3.math.Vector3f, com.jme3.math.Quaternion) } - */ - @Deprecated - public void setUserTransformsWorld(Vector3f translation, Quaternion rotation) { - - } /** * Sets the transforms of this bone in model space (relative to the root bone) * diff --git a/jme3-core/src/main/java/com/jme3/light/LightProbe.java b/jme3-core/src/main/java/com/jme3/light/LightProbe.java index 4ef1dd6903..27b7605cb4 100644 --- a/jme3-core/src/main/java/com/jme3/light/LightProbe.java +++ b/jme3-core/src/main/java/com/jme3/light/LightProbe.java @@ -211,17 +211,6 @@ public BoundingVolume getBounds() { return new BoundingSphere(area.getRadius(), ((SphereProbeArea)area).getCenter()); } - /** - * Sets the bounds of this LightProbe - * Note that for now only BoundingSphere is supported and this method will - * throw an UnsupportedOperationException with any other BoundingVolume type - * @param bounds the bounds of the LightProbe - * @deprecated - */ - @Deprecated - public void setBounds(BoundingVolume bounds) { - } - public ProbeArea getArea() { return area; } diff --git a/jme3-core/src/main/java/com/jme3/material/RenderState.java b/jme3-core/src/main/java/com/jme3/material/RenderState.java index 667a64ba2f..94e8d62683 100644 --- a/jme3-core/src/main/java/com/jme3/material/RenderState.java +++ b/jme3-core/src/main/java/com/jme3/material/RenderState.java @@ -704,35 +704,6 @@ public boolean equals(Object o) { return true; } - /** - * @deprecated Does nothing. Point sprite is already enabled by default for - * all supported platforms. jME3 does not support rendering conventional - * point clouds. - * - * @param pointSprite ignored - */ - @Deprecated - public void setPointSprite(boolean pointSprite) { - } - - /** - * @deprecated Does nothing. To use alpha test, set the - * AlphaDiscardThreshold material parameter. - * @param alphaFallOff does nothing - */ - @Deprecated - public void setAlphaFallOff(float alphaFallOff) { - } - - /** - * @deprecated Does nothing. To use alpha test, set the - * AlphaDiscardThreshold material parameter. - * @param alphaTest does nothing - */ - @Deprecated - public void setAlphaTest(boolean alphaTest) { - } - /** * Enable writing color. * @@ -981,14 +952,6 @@ public void setDepthFunc(TestFunction depthFunc) { cachedHashCode = -1; } - /** - * @deprecated - * @param alphaFunc ignored - */ - @Deprecated - public void setAlphaFunc(TestFunction alphaFunc) { - } - /** * Sets the mesh line width. * Use this in conjunction with {@link #setWireframe(boolean)} or with a mesh in @@ -1235,7 +1198,6 @@ public BlendFunc getCustomDfactorAlpha() { /** * @return true * @deprecated Always returns true since point sprite is always enabled. - * @see #setPointSprite(boolean) */ @Deprecated public boolean isPointSprite() { diff --git a/jme3-core/src/main/java/com/jme3/renderer/RenderContext.java b/jme3-core/src/main/java/com/jme3/renderer/RenderContext.java index 4822ec3a05..1422908af3 100644 --- a/jme3-core/src/main/java/com/jme3/renderer/RenderContext.java +++ b/jme3-core/src/main/java/com/jme3/renderer/RenderContext.java @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009-2019 jMonkeyEngine + * Copyright (c) 2009-2021 jMonkeyEngine * All rights reserved. * * Redistribution and use in source and binary forms, with or without @@ -35,7 +35,6 @@ import com.jme3.material.RenderState; import com.jme3.math.ColorRGBA; -import com.jme3.scene.Mesh; import com.jme3.scene.VertexBuffer; import com.jme3.shader.Shader; import com.jme3.texture.FrameBuffer; @@ -87,9 +86,6 @@ public class RenderContext { */ public float polyOffsetUnits; - /** - * @see Mesh#setPointSize(float) - */ public float pointSize; /** diff --git a/jme3-core/src/main/java/com/jme3/scene/Mesh.java b/jme3-core/src/main/java/com/jme3/scene/Mesh.java index 6d72765bf4..2d8ad639d7 100644 --- a/jme3-core/src/main/java/com/jme3/scene/Mesh.java +++ b/jme3-core/src/main/java/com/jme3/scene/Mesh.java @@ -57,8 +57,6 @@ * Meshes may contain three types of geometric primitives: *