• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

3D [Solved] D3D Model Texture Not Repeating

KurtBlissZ

Member
I can't figure how to use texture repeating for models. Any ideas why this won't work?

Creation
Code:
lZ1 = 64;
lZ2 = 0;

lModel = d3d_model_create();
d3d_model_wall(lModel, x, y, lZ1, x+sprite_width, y, lZ2, 2, 2);
Draw
Code:
d3d_model_draw(lModel, 0, 0, 0, background_get_texture(BactexFloor));
Download
 

Attachments

Top