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 Unamine · Jan 31, 2011 at 06:39 PM · dynamicmodelingcutscenepress

How to create cut scenes dynamics in Unity?

Well, I started using Unity recently wanted to know how to create cutscenes and cutscenes also create dynamic, example:

An airplane is falling and you have to press a button that appears on the screen to keep it in the air if you press the wrong button, the plane will fall but will show the plane flying ...

I also wanted to know if the cutscene is done on modeling program or on the Unity and how make the two types.

Comment
Add comment
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

4 Replies

· Add your reply
  • Sort: 
avatar image
2
Best Answer

Answer by 3DMagicVR · Jan 31, 2011 at 07:13 PM

Hi, you must work your elements on the 3d modeling program and then put your pieces on the scene you want to work, make some scripting stuff to make the sequence and presto! the cut scene it's ready for you game, you can use dynamics on your cut scene because they are still part of the game (if you are not using video as you cut scene).

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
avatar image
1
Best Answer

Answer by Henrique Dantas · Feb 02, 2011 at 01:47 AM

You can animate the camera and the objects in your modelling program and then import to Unity. Make various animations, one for when the player press the correct button, another to the icorrect button, one from the start where it's not interactive and etc. Hope i was helpful.

Comment
Add comment · Show 5 · 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
avatar image Unamine · Feb 02, 2011 at 10:05 PM 0
Share

Ok, but how can I run this animation camera and the others have to import asset by asset? Each sequence would be a new scene? You could tell where you have some source code? I wanted to do a demo in the style of BootCamp when he goes behind the enemy that shows the camera fil$$anonymous$$g him walking in front

avatar image Henrique Dantas · Feb 06, 2011 at 04:51 PM 0
Share

No you don't need to import asset by asset. For example, i'm using cinema 4D, and i've already made a cutscene in unity using cinema 4D. I've animated all the scene and saved in a .c4d file, and then imported to Unity. After that, i've tweaked some things, like the camera configuration, animation velocity and etc. To animate all togheter, i only animate all the scene, and added a animation component to my animated objects with the C4D animation take that cinema 4d has created. I bought a course of Unity and i learnt so much, but i don't have a source, i make my own script.

avatar image Unamine · Feb 09, 2011 at 12:04 PM 0
Share

O$$anonymous$$, Henrique voc brasileiro no ? tava vendo suas aulas no Youtube, tambm sou brasileiro, vou tentar fazer no 3ds max, eu importo a cena completa no ? De qualquer modo e coloco aqui

avatar image Unamine · Feb 09, 2011 at 12:07 PM 0
Share

Qual foi o curso que voc comprou?

avatar image Henrique Dantas · Feb 14, 2011 at 10:59 PM 0
Share

sou brasileiro sim! Eu comprei o curso VTC Introduction to Game Development Using Unity 3D. E valeu por ter assistido $$anonymous$$has video-aulas!

Yeah! i'm brazillian! I bought the VTC Introduction to Game Development Using Unity 3D course. And thanks for watching my video tutorials!

avatar image
1
Best Answer

Answer by fireDude67 · Feb 03, 2011 at 03:53 AM

Try using iTween. It made my cutscenes really easy, as you can easily move objects from A to B, and it also has a path editor, and can fade camera in/out.

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
avatar image
1

Answer by Borgo · Jan 31, 2011 at 07:18 PM

You can do this in many ways:

  • The game is running and the player needs to press the button;
  • He pressed the wrong button;


You can use these options:

  • Call another scene using the Application.LoadLevel function to play a streamed movie;
  • Make the animations in a 3D software and use in Unity;
  • Use Unity to make these animations.

Edit:
Links to the docs:
http://unity3d.com/support/documentation/ScriptReference/Application.html
http://unity3d.com/support/documentation/ScriptReference/MovieTexture.html
http://unity3d.com/support/documentation/ScriptReference/MovieTexture.Play.html

Comment
Add comment · Show 3 · 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
avatar image Unamine · Jan 31, 2011 at 09:19 PM 0
Share

you have some video or script that you can help me?

avatar image Borgo · Feb 01, 2011 at 12:06 PM 0
Share

Not now, take a look on the docs, I had edited my answers with the links.

avatar image Unamine · Feb 01, 2011 at 06:18 PM 0
Share

Ok, thanks, but I do not want it to be a video but a cinematic in-game

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

No one has followed this question yet.

Related Questions

Changing dynamic toggle.isOn in List 0 Answers

C# How to make String Dynamic for UnityEvent 0 Answers

Creating one-way platforms with dynamic colliders in a 2D vertical platform jumper 0 Answers

Applying behaviour from weight texture mapping 0 Answers

How to access the data in a list that save any class inside 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