Page 2 of 4

Re: Pawn Game

Posted: Thu Jun 11, 2015 3:10 am
by Vertex
Character Player.
Image
Image
Image :shock:

Re: Pawn Game

Posted: Thu Jun 11, 2015 1:49 pm
by aicd99
use fraps

www.fraps.com

Re: Pawn Game

Posted: Thu Jun 11, 2015 5:59 pm
by Vertex
Image
I skeleton finished, ready for animation.

Re: Pawn Game

Posted: Thu Jun 11, 2015 11:05 pm
by Vertex
Image

Re: Pawn Game

Posted: Thu Jun 11, 2015 11:42 pm
by Vertex
Image :mrgreen:

Re: Pawn Game

Posted: Fri Jun 12, 2015 11:43 am
by aicd99
What software were you using to make the models

Re: Pawn Game

Posted: Fri Jun 12, 2015 5:08 pm
by Vertex
aicd99 wrote:What software were you using to make the models
I use fragmotion , exported to MilkShape and then export the ACT in body and mot

Re: Pawn Game

Posted: Fri Jun 12, 2015 6:16 pm
by Vertex

Re: Pawn Game

Posted: Fri Jun 12, 2015 7:19 pm
by Vertex

Re: Pawn Game

Posted: Fri Jun 12, 2015 10:24 pm
by Vertex
Fix Animation Run.
[youtube]https://youtu.be/l668M-Vvyvo[/youtube]
[youtubel668M-Vvyvo[/youtube]
https://youtu.be/l668M-Vvyvo

Re: Pawn Game

Posted: Fri Jun 12, 2015 11:05 pm
by Vertex
Pawn Running and Idle on Reality Factory. :mrgreen:


https://youtu.be/pAlqPA6JR18

Re: Pawn Game

Posted: Mon Jun 15, 2015 7:03 pm
by Vertex
My camera free script.
https://youtu.be/MRVd6e6e4iM

Code: Select all


{
	
	// -------------------------------------------------
	// Nombre Fichero 	: PivoteJugador.s.
	// Nombre Projecto 	: Pawn.
	// Sitio Web		: http://www.iris3dgames.com
	// Scripter			: Yue Rexie
	// Fecha			: 15 - Jun - 2015
	// -------------------------------------------------
	// Notas			: Fichero encargado de crear
	//				 	  un pivote central para la  
	//					  camara libre / Jugador.
	// -------------------------------------------------
	
	
	
	InicioPivoteJugador[()
	{
		PivoteJugador.Console(Camara.CONSOLA);					// Se activa la Consola.
		PivoteJugador.debug("Pivote Jugador Iniciado");			// Mensaje Informativo.
	
		
		LowLevel("ConfigPivote");
		
	}]
	
	ConfigPivote[()
	{
		
		PivoteJugador.PositionToPawn("Jugador",0,0,0,false, true);
		
	}]
	
	
	
	
	
	
}

Code: Select all

{
	// -------------------------------------------------
	// Nombre Fichero 	: Camara.s.
	// Nombre Projecto 	: Pawn.
	// Sitio Web		: http://www.iris3dgames.com
	// Scripter			: Yue Rexie
	// Fecha			: 13 - Jun - 2015
	// -------------------------------------------------
	// Notas			: Fichero encargado de crear
	//				 	  una camara libre en tercera 
	//					  persona.
	// -------------------------------------------------
	
	// Config.
	CONSOLA			[true]								// Estado de la consola.
	
	
	
	InicioCamara[()
	{
		Camara.Console(CONSOLA);						// Se activa la Consola.			
		Camara.debug("Camara Iniciada");				// Mensaje informativo.
		
		
		Camara.LowLevel("ConfigCamara");				// Orden de bajo Nivel "ConfigCamara".
		
		
		
	}]
	
	ConfigCamara[()
	{
		
							
		Camara.PawnRender(false);						// El pawn Camara no se renderiza.
		Camara.PlayerRender(false);						// El Player por defecto no se renderiza.
		
		PivoteJugador.AttachCamera();					// Se engancha la camara al Pawn.
		
		
	
		
		
		
		
		
	}]
	
	
}



Code: Select all

{
	// -------------------------------------------------
	// Nombre Fichero 	: Jugador.s.
	// Nombre Projecto 	: Pawn.
	// Sitio Web		: http://www.iris3dgames.com
	// Scripter			: Yue Rexie
	// Fecha			: 13 - Jun - 2015
	// -------------------------------------------------
	// Notas			: Fichero encargado de crear
	//				 	  el personaje jugador scripteado. 
	//					  
	// -------------------------------------------------
	
	
	// Orden de Entrada.
	InicioJugador[()
	{
		Jugador.Console(Camara.CONSOLA);					// Se activa la Consola.
		Jugador.debug("Player Iniciado");					// Mensaje Informativo.
		Jugador.BoxHeight(55);								// Altura de Colision Jugador.
		Jugador.BoxWidth(15);								// Anchura de Colision Jugador.
		Jugador.LowLevel("ConfigJugador"); 					// Orden de bajo nivel "ConfigPlayer".
		
		
	}]
	
	
	ConfigJugador[()
	{
		
		PivoteJugador.MatchPlayerAngles();
		
	}]
	
	
}

Re: Pawn Game

Posted: Tue Jun 16, 2015 12:25 am
by aicd99
English version please

Re: Pawn Game

Posted: Fri Jun 19, 2015 11:19 pm
by Vertex
Animation Pawn Jump Script Player.
:shock:
https://www.facebook.com/iris3dgames

Re: Pawn Game

Posted: Sat Jun 20, 2015 2:17 am
by Vertex
Test Bump.
Image

Image