Napisano 18 Maj 201311 l Witam czy ktoś wie jak zrobić kamera cut w Unity? Nie chcę mieć prezentacji tylko w locie ,chciałbym zrobić kilka ujęć jak w filmie.
Napisano 20 Maj 201311 l Najlepiej stworzyc pare kamer i kontrolowac ich depth - poniewaz tak ladnie podziekowales znowu lapaj scene :) CameraCUT.zip Na Main Camera masz scrypcik w ktorym tworzysz tablice kamer oraz tablice delayow przeskoku miedzy nimi - zobacz jak to jest zrobione w scenie. EDIT: Daje tez caly kod tego skryptu: using UnityEngine; using System.Collections; public class CameraCUT : MonoBehaviour { public Camera[] cameras; public float[] delays; private int _currentID = 0; void Start () { cameras[_currentID].depth = 100; cameras[_currentID + 1].depth = -100; StartCoroutine ( "nextCamera", delays[_currentID] ); } private IEnumerator nextCamera ( float delay ) { if ( _currentID + 1 { yield return new WaitForSeconds ( delay ); cameras[_currentID].depth = -100; _currentID++; cameras[_currentID].depth = 100; StartCoroutine ( "nextCamera", delays[_currentID] ); } } }
Jeśli chcesz dodać odpowiedź, zaloguj się lub zarejestruj nowe konto