I have posted this question in other threads and so far have not received any answers so I am posting it separately to get noticed.
Based on the documentation adding background="pano" on the depthmap element will "Render the depthmap pano and behind it the normal undistorted pano image". However it doesn't seem to work. Please see sample tour where I implemented it
krpano - b07cb553977f44cf84133129573053a8
As you can see you can see the black holes in the model and I expect it to be filled with an image in the back the pano image but thats not whats happening.
See code chunk below used in the xml file
<depthmap
url="af1b14a3589c4865a61016178943c6ed_50k.obj"
rendermode="3dmodel"
background="pano"
align="0|0|0"
axis="+x+y+z"
enabled="true"
hittest="true"
offset="0"
origin="0|0|0"
scale="1"
subdiv="0"
textured="true"
/>
Display More
Am I doing anything wrong? or did I misunderstand its purpose?
I am able to use a background with dollhouse but by setting backgroundurl see this sample tour . Below is the code which made this work.
<depthmap url="panos/model-expanded.obj"
enabled="true"
rendermode="3dmodel"
textured="true"
scale="100"
offset="0"
subdiv=""
encoding="gray"
cull="front"
origin="-0.0, 0.0, -0.0"
align="-0.0|-0.0|0.0"
hittest="true"
background="pano"
backgroundurl="panos/background.jpg"
/>
Display More
However I don't want to go this route since the background="pano" seems to be the solution I am looking for.
klaus.krpano could you enlighten me on the use of background="pano" ?