From 6a3ed6428fad06cf29b9a4627cecda7685769577 Mon Sep 17 00:00:00 2001 From: Caleb Butler Date: Sun, 3 Sep 2023 17:25:54 -0400 Subject: [PATCH] Remove deprecated getBoneName method --- include/IBoneSceneNode.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/include/IBoneSceneNode.h b/include/IBoneSceneNode.h index 8cc8c075..7f791f8f 100644 --- a/include/IBoneSceneNode.h +++ b/include/IBoneSceneNode.h @@ -59,10 +59,6 @@ namespace scene IBoneSceneNode(ISceneNode* parent, ISceneManager* mgr, s32 id=-1) : ISceneNode(parent, mgr, id),positionHint(-1),scaleHint(-1),rotationHint(-1) { } - //! Get the name of the bone - /** \deprecated Use getName instead. This method may be removed by Irrlicht 1.9 */ - _IRR_DEPRECATED_ virtual const c8* getBoneName() const { return getName(); } - //! Get the index of the bone virtual u32 getBoneIndex() const = 0;