How do you fix line warping when 3D objects move off the screen.

id: 750163

category: Help with Scripts

posts: 3

MineTurte MineTurte loading
Basically I was following a tutorial on how to make a 3D engine because I was bored. Anyways I'm done with it but the problem is that I can't figure out how to fix the lines warping and going crazy when attempting to move them off screen. If someone could provide a detailed explanation and fix I'd appreciate it <3


linkie: https://scratch.mit.edu/projects/989332716/
malicondii malicondii loading
This would be XY clipping, and this tutorial explains it quite well. An easier alternative would be to make an empty 0x0 sprite in the vector mode, and use this block:
when green flag clicked
set size to ((1) / (0)) %
MineTurte MineTurte loading

malicondii wrote:

This would be XY clipping, and this tutorial explains it quite well. An easier alternative would be to make an empty 0x0 sprite in the vector mode, and use this block:
when green flag clicked
set size to ((1) / (0)) %
Thanks!