Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Martin575 · May 21, 2014 at 07:12 AM · animationcamerajavascriptswitchanim

Play anim, javascript

I have a javascript that switches cameras and I need it to wait for the camera switch and play an anim first.

 var camera1 : Camera;
 var camera2 : Camera;
 var sound1: AudioClip;
 var sound2: AudioClip;
  
 
 function Start () {
     camera1.camera.active = true;
     camera2.camera.active = false;
         SwitchCameras();
     }
  
     function Update () {
     //right mouse button
         if(Input.GetMouseButtonDown(1)) {
            SwitchCameras();
            PlayAudio();
         }
    }
     function SwitchCameras(){
         if(camera1.camera.active == false){
             camera1.camera.active = true;
             camera2.camera.active = false;
         }
         else {
             camera1.camera.active = false;
             camera2.camera.active = true;
         }
     }
  
     function PlayAudio(){
         if(camera1.camera.active == true){
             audio.PlayOneShot(sound1);
         }
         else if (camera2.camera.active == true){
             audio.PlayOneShot(sound2);
         }
     }
Comment
Add comment · Show 5
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Radivarig · May 21, 2014 at 03:32 PM 0
Share

Hi, I see you used the code I wrote as an answer for your previous question, if it worked for you please mark the answer so the question can be solved.

To wait for something the function that will be calling the 'delay' has to be of type IEnumerator and that function has to call a StartCoroutine(YourFunction()) where YourFunction is also of type IEnumerator.

To play an animation use Animation.Play();

Radivarig

avatar image Martin575 · May 21, 2014 at 07:11 PM 0
Share

Hey sorry, I'm new this site and didn't know I had to mark an answer if it works.

Anyway, the animation script does not seem the work because when I test the game, my Player clips through the terrain and falls into nowhere.

avatar image Radivarig · May 21, 2014 at 11:33 PM 0
Share

That could be because you don't have a collider:

  1. on your player (click generate collider from mesh in your model inspector)

  2. on the terrain (if by terrain you mean any other object than .terrain file (terrain files have automatic colliders), add a collider component to it, box collider will be enough, note that generating mesh collider is the most processor expensive option)

  3. their colliders are intersecting in edit mode, try pulling the player a bit higher then the terrain before pressing play

avatar image Radivarig · May 23, 2014 at 05:25 AM 0
Share

Hi, have you tried any of the above?

avatar image Martin575 · May 24, 2014 at 05:16 PM 0
Share

Yes I have and my player has a collider, I'm using a terrain and nothing is intersecting. Everything is fine till I press shift to sprint and then I just clip

1 Reply

· Add your reply
  • Sort: 
avatar image
0

Answer by abdala · May 23, 2014 at 06:03 AM

 if(animation.isplayng("anim name")){camera.active = true} try this in c# :D
Comment
Add comment · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

22 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

Switching cameras (JavaScript) 0 Answers

fps MouseLook with animation applied to camera. 1 Answer

Switching Cameras - Confusion with Two Code Samples 2 Answers

Disabled Camera After Animation Finishes 1 Answer

Camera switch after specific time 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges