Crea una cuenta o inicia sesión

¡Continúa aprendiendo sin ningún costo! Únete y comienza a potenciar tu carrera

No se trata de lo que quieres comprar, sino de quién quieres ser. Invierte en tu educación con el precio especial

Antes: $249

Currency
$209

Paga en 4 cuotas sin intereses

Paga en 4 cuotas sin intereses
Suscríbete

Termina en:

12 Días
5 Hrs
24 Min
22 Seg

Sprite Atlas: Los dulces

6/31
Recursos

No solo podemos pedirle a Unity que divida los elementos de nuestros sprites de forma automática, también nos permite dividirlos de forma manual. Eso es exactamente lo que vamos a hacer con los dulces de nuestra aplicación.

Aportes 6

Preguntas 3

Ordenar por:

¿Quieres ver más aportes, preguntas y respuestas de la comunidad?

Arrastrar objetos de la escena al menú Project los convierte automáticamente en prefabs, y el que queda en la escena puede ser modificado pero no altera el prefab amenos que en “overrides” le des “apply all”

Genial

Esta clase estubo Genial!

Te reto a traducirme 😁 I dare you!
(y a corregirme llegado el caso)

<h5>Sprite Atlas Efficiency</h5>

Notice how we extract 40 “images” out of a single file uploading.
- This results on a better performance of the game, saving battery and resources for our player’s phone.

Layers

Selecting the boxes for our “candy”.

- We let the **Sprite Editor** to do it's wizardry by automatically slicing the boxes spritesheet.  
- Then we drop a box and .. Ugh, it falls behind the background. 

Don’t worry

Order in Layer

  • Select the background OBJECT (Hierarchy) and set a lower number on it.
    We go deeper than -1 (say -10); as you may want to add some other object in between later.

Pixels per Unit

- The box we've dropped on the background is visible now …maybe too much! 
  • We can select the container sprite on Assets and change it’s size on
    pixels per unit property: the bigger the number, the smaller the object

    • In this case 250 turned out to be around the optimal size.
  • ** Remember that this game is played with just your thumbs!**

    You may encounter this situations frequently while developing a game.
    The artists create the assets on their preferred formats; and then you need to work on these graphics for a technical adaptation.

    First Collider

    • The collider not for objects in between the game but **for the object and the player’s finger"
    • Inspector -> Add component -> Box Collider 2D

    First Script

    • Create new script inside de Scriptsfolder, we’re calling it Candy .
    • Now drag n’ drop the Candy script from the Assets to the box Object (Hierarchy || Inspector)

    First Prefab

    Lastly:

    • rename the box to Candy,
    • set it’s position to the center (X 0 Y 0)
      the Candy object it’s ready to be drag 'n drop from the Hierarchy to the Prefabs folder.

Hola Personitas