I have a question again

Can i put a png file as skybox, or i need specifically dds file?

1 Like

Yes, you can instead use this method that takes in 6 textures, each representing a different face of the skybox.

https://javadoc.jmonkeyengine.org/v3.3.0-beta1/com/jme3/util/SkyFactory.html#createSky-com.jme3.asset.AssetManager-com.jme3.texture.Texture-com.jme3.texture.Texture-com.jme3.texture.Texture-com.jme3.texture.Texture-com.jme3.texture.Texture-com.jme3.texture.Texture-com.jme3.math.Vector3f-

1 Like

You CAN use uncompressed PNG, but you SHOULD consider using compressed textures, expecially with the BC7 support that was added on master… today :slight_smile:

1 Like