Hello, I can't scrool object texture.
It looks same with this:
dbMakeObjectBox
(
id_lava1 , // ID
100 , // X
0.1 , // Y
100 // Z
);
dbPositionObject ( id_lava1 , 0 , -10 , 0 );
dbLoadImage ( "obj//world//lava1.jpg", id_i_lava1 );
dbTextureObject ( id_lava1 , id_i_lava1 );
dbPhyMakeRigidBodyStaticBox ( id_lava1 , 0 );
dbScrollObjectTexture ( id_lava1 , 10 , 10 );
and with this:
dbMakeObjectBox
(
id_lava1 , // ID
100 , // X
0.1 , // Y
100 // Z
);
dbPositionObject ( id_lava1 , 0 , -10 , 0 );
dbLoadImage ( "obj//world//lava1.jpg", id_i_lava1 );
dbTextureObject ( id_lava1 , id_i_lava1 );
dbPhyMakeRigidBodyStaticBox ( id_lava1 , 0 );
dbScrollObjectTexture ( id_lava1 , 50 , 50 );
Living for C++ programming!