Ver Mensaje Individual
  #26 (permalink)  
Antiguo 23/05/2014, 14:30
Avatar de jp91
jp91
 
Fecha de Ingreso: mayo-2014
Mensajes: 94
Antigüedad: 10 años, 6 meses
Puntos: 11
Respuesta: Canvas y 'animaciones'

ok no pasa nada tu tienes esto:
Código Javascript:
Ver original
  1. function DeusExMachinaPrototype(){
  2.    
  3.     this.Instanced  = false;
  4.     this.NumberOfPoints = 100;
  5.     this.ProportionResolutionX = (screen.width/1920);
  6.     this.ProportionResolutionY = (screen.height/1080);
  7.    
  8.    
  9.    
  10.         this.CreateInfoElements = function CreateInfoElements(){};
  11.  
  12.        
  13. }

Con prototipos:
Código Javascript:
Ver original
  1. function general (){
  2. this.propiedad= "algo";
  3. };
  4.  
  5. general.prototype = {
  6. metodo:function(){}
  7. };
  8.  
  9. //ahora el protoype es modificado apunta al constructor de la funcion
  10. //es decir a la funcion general y puede acceder a sus metodos.
  11. // y no es una copia en memoria del objeto ahora el metodo se encuentra en el prototype
  12. var instancia = new general();
__________________
OOoo Como hacer ooOO
juegos con Html5.