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.
79 lines
2.6 KiB
79 lines
2.6 KiB
8 years ago
|
// This code is part of the Fungus library (http://fungusgames.com) maintained by Chris Gregan (http://twitter.com/gofungus).
|
||
|
// It is released for free under the MIT open source license (https://github.com/snozbot/fungus/blob/master/LICENSE)
|
||
9 years ago
|
|
||
10 years ago
|
using UnityEngine;
|
||
|
|
||
|
namespace Fungus
|
||
|
{
|
||
8 years ago
|
/// <summary>
|
||
|
/// Activates swipe panning mode where the player can pan the camera within the area between viewA & viewB.
|
||
|
/// </summary>
|
||
8 years ago
|
[CommandInfo("Camera",
|
||
|
"Start Swipe",
|
||
|
"Activates swipe panning mode where the player can pan the camera within the area between viewA & viewB.")]
|
||
|
[AddComponentMenu("")]
|
||
|
public class StartSwipe : Command
|
||
|
{
|
||
|
[Tooltip("Defines one extreme of the scrollable area that the player can pan around")]
|
||
8 years ago
|
[SerializeField] protected View viewA;
|
||
10 years ago
|
|
||
8 years ago
|
[Tooltip("Defines one extreme of the scrollable area that the player can pan around")]
|
||
8 years ago
|
[SerializeField] protected View viewB;
|
||
10 years ago
|
|
||
8 years ago
|
[Tooltip("Time to move the camera to a valid starting position between the two views")]
|
||
8 years ago
|
[SerializeField] protected float duration = 0.5f;
|
||
10 years ago
|
|
||
8 years ago
|
[Tooltip("Multiplier factor for speed of swipe pan")]
|
||
8 years ago
|
[SerializeField] protected float speedMultiplier = 1f;
|
||
10 years ago
|
|
||
8 years ago
|
[Tooltip("Camera to use for the pan. Will use main camera if set to none.")]
|
||
8 years ago
|
[SerializeField] protected Camera targetCamera;
|
||
8 years ago
|
|
||
|
public virtual void Start()
|
||
|
{
|
||
|
if (targetCamera == null)
|
||
|
{
|
||
|
targetCamera = Camera.main;
|
||
|
}
|
||
|
if (targetCamera == null)
|
||
|
{
|
||
|
targetCamera = GameObject.FindObjectOfType<Camera>();
|
||
|
}
|
||
|
}
|
||
9 years ago
|
|
||
8 years ago
|
public override void OnEnter()
|
||
|
{
|
||
|
if (targetCamera == null ||
|
||
|
viewA == null ||
|
||
|
viewB == null)
|
||
|
{
|
||
|
Continue();
|
||
|
return;
|
||
|
}
|
||
9 years ago
|
|
||
8 years ago
|
ICameraController cameraController = CameraController.GetInstance();
|
||
10 years ago
|
|
||
8 years ago
|
cameraController.StartSwipePan(targetCamera, viewA, viewB, duration, speedMultiplier, () => Continue() );
|
||
|
}
|
||
10 years ago
|
|
||
8 years ago
|
public override string GetSummary()
|
||
|
{
|
||
|
if (viewA == null)
|
||
|
{
|
||
|
return "Error: No view selected for View A";
|
||
|
}
|
||
10 years ago
|
|
||
8 years ago
|
if (viewB == null)
|
||
|
{
|
||
|
return "Error: No view selected for View B";
|
||
|
}
|
||
10 years ago
|
|
||
8 years ago
|
return viewA.name + " to " + viewB.name;
|
||
|
}
|
||
10 years ago
|
|
||
8 years ago
|
public override Color GetButtonColor()
|
||
|
{
|
||
|
return new Color32(216, 228, 170, 255);
|
||
|
}
|
||
|
}
|
||
10 years ago
|
}
|