Author Topic: Print edges getting cut? [SOLVED]  (Read 536 times)

I'm making some prints but I'm running into an issue.

I have some repeating prints I made for ModTer (512x512), and they look fine.

I resized them for print plates (256x256), and they look fine on 2x2 print plates,

but when I used them on 4x4 print plates the outer edges get cut




Can somebody help me find a solution to this?
« Last Edit: March 06, 2016, 07:11:17 PM by Dread »

The 4x plate probably has incorrect uvs.

Unfortunately, yes. The 4x4 tile has UV values like 0.985 and 0.015 instead of 1 and 0.
The 2x2 print plate has 1 and 0 for UV values.

Thanks guys, that was definitely it.

SOLUTION:

Changed the .blb code from:
Code: [Select]
UV COORDS:
0.015 0.985
0.015 0.015
0.985 0.015
0.985 0.985

to:
Code: [Select]
UV COORDS:
0 1
0 0
1 0
1 1


Locking.