You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
850 B
34 lines
850 B
using UnityEngine; |
|
using System.Collections; |
|
|
|
namespace Fungus |
|
{ |
|
// Adjusts the scale of a sprite to fit into a fixed number of vertical world units |
|
// This helps to keep room sprites neatly organised in the editor. |
|
[ExecuteInEditMode] |
|
public class FixedHeightSprite : MonoBehaviour |
|
{ |
|
public float height = 2f; |
|
|
|
public void Update() |
|
{ |
|
if (!Application.isPlaying) |
|
{ |
|
SpriteRenderer spriteRenderer = renderer as SpriteRenderer; |
|
if (!spriteRenderer || !spriteRenderer.sprite) |
|
{ |
|
return; |
|
} |
|
|
|
transform.position = new Vector3(transform.position.x, transform.position.y, 0); |
|
transform.rotation = Quaternion.identity; |
|
|
|
float spriteHeight = spriteRenderer.sprite.bounds.extents.y * 2; |
|
|
|
float scale = height / spriteHeight; |
|
|
|
transform.localScale = new Vector3(scale, scale, 1f); |
|
} |
|
} |
|
} |
|
} |