Pawn Game

Game Design, Story, Game Play.
User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Thu Jun 11, 2015 3:10 am

Character Player.
Image
Image
Image :shock:
http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
aicd99
Posts: 264
Joined: Mon Oct 10, 2011 11:17 am

Re: Pawn Game

Post by aicd99 » Thu Jun 11, 2015 1:49 pm

use fraps

www.fraps.com

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Thu Jun 11, 2015 5:59 pm

Image
I skeleton finished, ready for animation.
http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Thu Jun 11, 2015 11:05 pm

Image
http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Thu Jun 11, 2015 11:42 pm

Image :mrgreen:
http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
aicd99
Posts: 264
Joined: Mon Oct 10, 2011 11:17 am

Re: Pawn Game

Post by aicd99 » Fri Jun 12, 2015 11:43 am

What software were you using to make the models

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Fri Jun 12, 2015 5:08 pm

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
http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Fri Jun 12, 2015 6:16 pm

http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Fri Jun 12, 2015 7:19 pm

http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Fri Jun 12, 2015 10:24 pm

Fix Animation Run.
[youtube]https://youtu.be/l668M-Vvyvo[/youtube]
[youtubel668M-Vvyvo[/youtube]
https://youtu.be/l668M-Vvyvo
http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Fri Jun 12, 2015 11:05 pm

Pawn Running and Idle on Reality Factory. :mrgreen:


https://youtu.be/pAlqPA6JR18
http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Mon Jun 15, 2015 7:03 pm

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();
		
	}]
	
	
}
http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
aicd99
Posts: 264
Joined: Mon Oct 10, 2011 11:17 am

Re: Pawn Game

Post by aicd99 » Tue Jun 16, 2015 12:25 am

English version please

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Fri Jun 19, 2015 11:19 pm

Animation Pawn Jump Script Player.
:shock:
https://www.facebook.com/iris3dgames
http://www.iris3dgames.com Reality Factory Spanish :wink:

User avatar
Vertex
Posts: 108
Joined: Fri May 22, 2015 1:01 am
Location: Colombia
Contact:

Re: Pawn Game

Post by Vertex » Sat Jun 20, 2015 2:17 am

Test Bump.
Image

Image
http://www.iris3dgames.com Reality Factory Spanish :wink:

Post Reply