Two suggestions that may help
- Use the Make Object droplet or the HTML 5 friendly solution from Andrey here http:
//www.krpano.com/forum/wbb/index.php?page=Thread&threadID=8034&pageNo=2
Firstly, it's not possible for the single circular image to be rotated as it's essentially just a flat image with one point of view.
You require multiple circular images, rotated slightly each time (say 10 degrees) to show a slightly different viewpoint which ends up covering 360 degrees of the sphere.
36 images would give you smooth rotation when interacting. 24 may even suffice. This will only give you horizontal rotation.
If you wanted vertical rotation you'd require more images.
See here
Object VR with left/right AND up/down rotation
- For a sphere wrapped around a 3D object, you could implement the Three JS plugin.
Use three.js (3d objects) inside krpano (with VR support)
In this case the mirror ball/sphere projection is not necessary and the equirectangular is mapped to a 3D sphere object instead.
Example of pano mapped to a 3D object is here
http://www.pano-ad.com.au/panos/animetes…thex/index.html
To enable mouse/touch interaction would require more coding knowledge in Three JS, but certainly possible.
Hope that helps