rasteron wrote:
Thanks Idris, is the Sound extension in the deleted community svn version already in Beta 5? I found the version with Beta 3 and got it to work but like most of the reports here, cannot do any Beta 3 asset importing so I might just go with Beta 5.
No, it seems that is was not updated since it was created for beta 3. Original extension developer focused on creating sound extension for Horde Gameengine instead.
Irdis wrote:
I'm not yet familiar with extensions in Horde3D, is there a guide to do a port from Beta 3 to Beta 5 extensions?
I don't think that any guides exist. Beta 3 had a c++ interface (a namespace Horde3D and functions in it, like Horde3D::addResource()). Beta 4 and 5 have a different procedural interface, like h3dAddResource, so top level interface of the extension needs to be redesigned. Also, some internal Horde modules have different function names/number of arguments. Basically, you'll have to remodel the interface parts of the extension, and some internal extension functions that use Horde's functions (whose name or number of parameters have changed since Beta 3).
You can use terrain extension as a guide.