1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Fix invisible player when the attached entity is removed

This commit is contained in:
TeTpaAka 2015-07-03 12:31:34 +02:00 committed by est31
parent 9c76f379ac
commit 8d03301138
4 changed files with 96 additions and 10 deletions

View file

@ -163,6 +163,12 @@ public:
{}
virtual void getAttachment(int *parent_id, std::string *bone, v3f *position, v3f *rotation)
{}
virtual void addAttachmentChild(int child_id)
{}
virtual void removeAttachmentChild(int child_id)
{}
virtual std::set<int> getAttachmentChildIds()
{ return std::set<int>(); }
virtual ObjectProperties* accessObjectProperties()
{ return NULL; }
virtual void notifyObjectPropertiesModified()