Camera fixa com rotação
2 participantes
Página 1 de 1
Camera fixa com rotação
Eu consegui um script de touch para rotacionar a camera,porem ela rotaciona pelo mapa,tipo quero que ela gire parada num ponto só,tipo uma camera FPS
SCRIPT DA CAMERA:
SCRIP DO TOUCHPAD:
SCRIPT DA CAMERA:
- Código:
using joystickcontrolls;
using UnityEngine;
namespace Examples.Scenes.TouchpadCamera
{
public class RotateCamera : MonoBehaviour
{
public float RotationSpeed = 15f;
public Transform OriginTransform;
public void Update()
{
var horizontalMovement = CnInputManager.GetAxis("Horizontal");
OriginTransform.Rotate(Vector3.up, horizontalMovement * Time.deltaTime * RotationSpeed);
}
}
}
SCRIP DO TOUCHPAD:
- Código:
using UnityEngine;
using UnityEngine.EventSystems;
namespace CnControls
{
public class Touchpad : MonoBehaviour
// some weird stuff here
// we have to support Unity Remote with Multi Touch (which is not currently supported with uGUI)
// so we just completely override the input system for the Editor, making it behave like it would normally do in builds
#if !UNITY_EDITOR
, IDragHandler, IPointerUpHandler, IPointerDownHandler
#endif
{
/// <summary>
/// Current event camera reference. Needed for the sake of Unity Remote input
/// </summary>
public Camera CurrentEventCamera { get; set; }
/// <summary>
/// The name of the horizontal axis for this touchpad to update
/// </summary>
public string HorizontalAxisName = "Horizontal";
/// <summary>
/// The name of the vertical axis for this touchpad to update
/// </summary>
public string VerticalAxisName = "Vertical";
/// <summary>
/// Whether this touchpad should preserve inertia when the finger is lifted
/// </summary>
public bool PreserveInertia = true;
/// <summary>
/// The speed of decay of inertia
/// </summary>
public float Friction = 3f;
private VirtualAxis _horizintalAxis;
private VirtualAxis _verticalAxis;
private int _lastDragFrameNumber;
private bool _isCurrentlyTweaking;
/// <summary>
/// Joystick movement direction
/// Specifies the axis along which it can move
/// </summary>
[Tooltip("Constraints on the joystick movement axis")]
public ControlMovementDirection ControlMoveAxis = ControlMovementDirection.Both;
private void Awake()
{
// Again, some Editor-only, Unity Remote multitouch logic
#if UNITY_EDITOR
gameObject.AddComponent<TouchpadInputHelper>();
#endif
}
private void OnEnable()
{
// When we enable, we get our virtual axis
_horizintalAxis = _horizintalAxis ?? new VirtualAxis(HorizontalAxisName);
_verticalAxis = _verticalAxis ?? new VirtualAxis(VerticalAxisName);
// And register them in our input system
CnInputManager.RegisterVirtualAxis(_horizintalAxis);
CnInputManager.RegisterVirtualAxis(_verticalAxis);
}
private void OnDisable()
{
// When we disable, we just unregister our axis
// It also happens before the game object is Destroyed
CnInputManager.UnregisterVirtualAxis(_horizintalAxis);
CnInputManager.UnregisterVirtualAxis(_verticalAxis);
}
public virtual void OnDrag(PointerEventData eventData)
{
// Some bitwise logic for constraining the touchpad along one of the axis
// If the "Both" option was selected, non of these two checks will yield "true"
if ((ControlMoveAxis & ControlMovementDirection.Horizontal) != 0)
{
_horizintalAxis.Value = eventData.delta.x;
}
if ((ControlMoveAxis & ControlMovementDirection.Vertical) != 0)
{
_verticalAxis.Value = eventData.delta.y;
}
_lastDragFrameNumber = Time.renderedFrameCount;
}
public void OnPointerUp(PointerEventData eventData)
{
_isCurrentlyTweaking = false;
if (!PreserveInertia)
{
_horizintalAxis.Value = 0f;
_verticalAxis.Value = 0f;
}
}
public void OnPointerDown(PointerEventData eventData)
{
_isCurrentlyTweaking = true;
OnDrag(eventData);
}
private void Update()
{
if (_isCurrentlyTweaking && _lastDragFrameNumber < Time.renderedFrameCount - 2)
{
_horizintalAxis.Value = 0f;
_verticalAxis.Value = 0f;
}
if (PreserveInertia && !_isCurrentlyTweaking)
{
_horizintalAxis.Value = Mathf.Lerp(_horizintalAxis.Value, 0f, Friction * Time.deltaTime);
_verticalAxis.Value = Mathf.Lerp(_verticalAxis.Value, 0f, Friction * Time.deltaTime);
}
}
}
}
breno1086- Membro
- PONTOS : 3411
REPUTAÇÃO : 1
Respeito as regras :
Re: Camera fixa com rotação
Para mim está dando este erro pois eu não tenho este script: CnInputManager
Más existem diversas maneiras simples de rotacionar algo... Use simplesmente o transform.rotation
Más existem diversas maneiras simples de rotacionar algo... Use simplesmente o transform.rotation
Tópicos semelhantes
» Raycast reconhecer qualquer ponto da tela em camera fixa
» problemas com rotacao da camera!!
» (DÚVIDA) Restringir a rotação da câmera.
» Como por limite na rotação da camera
» [RESOLVIDO] - Unity - Rotação da Câmera - Mathf.Clamp não funciona
» problemas com rotacao da camera!!
» (DÚVIDA) Restringir a rotação da câmera.
» Como por limite na rotação da camera
» [RESOLVIDO] - Unity - Rotação da Câmera - Mathf.Clamp não funciona
Página 1 de 1
Permissões neste sub-fórum
Não podes responder a tópicos