Set "flags = ISOMETRIC;" (without quotes) in your VIEW / camera. E.g. for a custom VIEW:

Code:
VIEW* isometric_view =
{ 		  
	layer = 30;  
	pos_x = 60;  
	pos_y = 60;  
	size_x = 400;
	size_y = 400;  
	arc = 60;  
	aspect = 1;  
	ambient = 50;  
	fog = 0;  
	genius = NULL;
	clip_near = 100; 	
	clip_far  = 5000;
	flags = ISOMETRIC | NOFOG;
}



set(camera, ISOMETRIC);

Last edited by Reconnoiter; 07/04/17 10:22.