Strange warnings

hello to everyone

Does someone know for that this warning appears and as solving it?

INFO: Child (null) attached to this node (nodoPrincipal)
21/05/2008 00:40:20 com.jme.scene.Node attachChild
INFO: Child (nodoPrincipal) attached to this node (rootNode)
21/05/2008 00:40:21 com.jme.scene.state.lwjgl.LWJGLTextureState load
ADVERTENCIA: Attempted to apply texture with size that is not power of 2: 304 x 304
21/05/2008 00:40:21 com.jme.scene.state.lwjgl.LWJGLTextureState load
ADVERTENCIA: Rescaling image to 256 x 256 !!!
21/05/2008 00:40:21 com.jme.scene.state.lwjgl.LWJGLTextureState load
ADVERTENCIA: Attempted to apply texture with size that is not power of 2: 304 x 304
21/05/2008 00:40:21 com.jme.scene.state.lwjgl.LWJGLTextureState load
ADVERTENCIA: Rescaling image to 256 x 256 !!!

You have textures there which size is not a power of 2 so jME will rescale them.



You should use textures only of power of 2 size:



…64 - 128 - 256 - 512 - 1024 2048…


RemoL, thank you very much.
I am again with JME if you have an example of how to do what you say you would be very grateful.

You'll need to manually resize your textures in your paint application of choice.



Or just ignore the warnings.