Translate

miércoles, 29 de marzo de 2017

Role-Playing Map Editor for Android on Unity

Buenos días chicos hoy os traigo un editor para crear mapas estilo juegos de rol....


....podrás crear el mapa desde una interface 2D y luego te generará el mapa en 3D.
Podrás seleccionar el ancho y el alto del mapa así como añadir objetos, muros puertas etc (a demás puedes añadir tus propios objetos al editor)...
Este pack incluye un pequeño visor de mapas con un personaje y los controles básicos para poder moverlo por el escenario.
Lo interesante de este pack es que además de crear los mapas puedes compartirlos a través de WhatsApp, Blogger o tu red social favorita, ya que he incluido un sistema para poder exportar e importar mapas pasándolos a texto encryptado, en resumen compartes un mensaje de texto copias el contenido y lo pegas en el editor, te generará el mapa y podrás guardarlo y probarlo.
Aquí un video compartiendo un mapa por WhatsApp:



La idea es que si haces un juego de rol y creas nuevos mapas puedas compartirlos rápidamente ya que es simplemente texto.

Unity Asset Store URL: http://u3d.as/L96

miércoles, 22 de marzo de 2017

This is only a test

######123456######INITCODE(123456)######123456######3######123456######Heart attack is...######123456######Crerebrovascular heart disease######123456######Hypertensive heart disease######123456######Ischemic heart disease######123456######C######123456######...the walls of your arteries become thick and stiff because of the build up fatty deposits. The fatty deposits are called plaques. The disease called ...######123456######Coronary heart disease######123456######Atherosclerosis######123456######Angina######123456######B######123456######........manifests as pain in the chest that results from reduced blood supply to the heart (ischemia). Blood carries oxygen around your body and depriving the heart of oxygen has serious consequences.######123456######Angina######123456######Atherosclerosis######123456######Coronary artery disease######123456######A######123456######.......refers to the disease of the arteries to the heart and their resulting complications, such as angina, heart attacks and heart failure.######123456######Aneurysm######123456######High blood pressure ######123456######Coronary heart disease######123456######C######123456######Angina is caused by######123456######Atherosclerosis######123456######Aneurysm######123456######Heart Attack######123456######A######123456######Cerebral vascular disease is caused by...######123456######Stroke######123456######Atherosclerosis######123456######Transient ischemic attacks######123456######B######123456######Heart failure, sometimes called....######123456######congestive heart failure######123456######arrhythmia######123456######bradycardia ######123456######A######123456###### ....is the most common type of heart disease######123456######Coronary artery disease######123456######Heart attack######123456######Cardiomyopathy######123456######A######123456######A sac formed by the bulging of a blood vessel wall or heart tissue....######123456######Angiogenesis######123456######Aneurysm######123456######Angioplasty######123456######B######123456######Narrowing or restriction of a blood vessel or valve that reduces blood flow....######123456######Stroke######123456######Stunned Myocardium######123456######Stenosis######123456######C######123456######Medical_HeartDiseases######123456######ENDCODE(123456)######123456######

sábado, 18 de marzo de 2017

I little bit update on Parabolic shot of my "Tower Defense Basic Pixel Art Pack"

I have improved the arrows parabolic shot, anyway i will include it in the next update but meanwhile you have the code that you must to change on "/Scripts/Archers_Tower/Parabolic_shot_Controller.cs"

*Replace the functions content:

.........
.........

void OnTriggerEnter2D(Collider2D coll) {

sw=false;
        GetComponent<Rigidbody2D>().bodyType = RigidbodyType2D.Static; //New Code
        GetComponent<Collider2D>().enabled=false;
this.transform.position = master.setThisZ(this.transform.position,0);
Invoke("onDestroy",1);
}
.........
.........

void isFalling(){//do when is falling

        if (this.transform.position.y < target.transform.position.y) {      //New Code
            GetComponent<Rigidbody2D>().bodyType = RigidbodyType2D.Static;
        }
float auxv = 0f;
float speedy = target.GetComponent<Rigidbody2D>().velocity.y;
float speedx = target.GetComponent<Rigidbody2D>().velocity.x;
if(Math.Sqrt(speedy*speedy)>Math.Sqrt(speedx*speedx)){
auxv=speedy;
}else{
auxv=speedx;
}
if(auxv<0){auxv = -auxv;}
if(accuracy_mode==1){
transform.position = Vector2.MoveTowards(transform.position, target.transform.position, Time.deltaTime*1);
}

find_error();//Not Hit Detection

}
.........


Tower Defense Basic Pixel Art Pack Unity Asset Store URL: http://u3d.as/jvw