Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 12 Next capture
2021 2022 2023
1 capture
12 Jun 22 - 12 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 /
  • Help Room /
avatar image
-2
Question by hezzl · Nov 13, 2016 at 01:18 PM · unity 5audiographicswebglasset

How to use Unity?

  1. As you can see the complete list and description of the commands that you use in your code? For example, Speed and Move like you can read more about possible commands and their functionality?

  2. Is there any ready formula or assets that you recommend to use, rather than develop from scratch? Will be able to share them?

  3. Whether there are ready decisions on the behaviors of characters in games? For example the decision for the goalkeeper, who palms the ball in a penalty? I do not want to prescribe the behavior of objects in the game, as this complex is not a trivial task.

  4. What is the average weight a game, for example Runner 2d? It is comparable with the weight of the games developed for the C2? The games work in the web/mobile browsers without any plugins?

  5. If we talk about the practice, for example, we decide to develop the game from the penalty spot, the player in which to score from the penalty spot. How to set 3D flight physics of the sword to make it so that when it hits the goalkeeper or goal, the ball bounced and the goal, respectively, counted or not? Of course more interested in the question of physics and the logic of the imposition scripts.

  6. How to make the game 2D Runner depending on the speed of the player, the camera was increased or closer? Ie, make the dynamic camera.

  7. How to work with lighting and light in the game? For example, in some levels you need to make them dark, and the light output only the character dynamics.

  8. How to dynamically load game objects via AJAX? For example, actuation of a particular trigger or action, the game will load a new enemy. The basic idea is to not load all objects in the game, and load them as needed to reduce load. What can you recommend for this part?

  9. How to build a json array? We need to get some data from the server, that will later be displayed in the game. Tell me, what tool would you recommend to use for this? 10. Can you recommend online courses for work with multiplayer? Consider the option of using the multiplayer to create games in the format of “Battle of wits” and “Tanks 2D”. Data processing in this case occurs on our server or we have to use an external server Unity?

  10. How to apply sounds to certain objects and set triggers? For example, when getting into character with laser, sound is produced. Also interested in the question of regulating the sound volume. For example when you start the game, the sound volume should go on increasing to a certain value. How to do it?

  11. How to add animations (sprites) to the character, for example, when driving forward and jump?

  12. Is Unity skeletal animation? In C2 we used AT brashmonkey to create skeletal animations (they have a plugin for Unity). BUT the problem was that when triggered, a certain trigger, for example a collision with an obstacle, the animation has been played from beginning to end, although the logic would have to stop and start to adjust to the trigger (if we are talking about skeletal animation). I can share the experience with skeleton animation? Perhaps there are courses on this topic.

  13. Thinking of creating an application that will allow you to use your smartphone camera and overlay the picture certain objects depending on the surface. In fact we are talking about augmented reality. Can you give links to a couple of courses on the subject or articles that reflect the features and tools of virtual reality?

Comment
Add comment · Show 1
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 Hellium · Nov 13, 2016 at 01:16 PM 1
Share

FAQ :

What are the guidelines for writing good questions?

We want Unity Answers to become a comprehensive database of questions and answers related to Unity. When you ask your questions, it can be helpful to keep a few things in $$anonymous$$d:

  • Don't post multiple unrelated questions in one post. $$anonymous$$ake separate posts ins$$anonymous$$d, each with one question.

Some reasons for getting a post rejected:

  • You haven't provided enough context: we need more information about your problem, relevant code snippets and what you have tried already.

  • There exists duplicate questions with answers if you were to do a search, either on Answers or on the Forum or on Unity's tutorials

  • Your question isn't specific enough: asking for a script, asking multiple questions in one post or asking a question that could be either subjective or require extensive discussion (and thus belongs in the Forum)

1 Reply

· Add your reply
  • Sort: 
avatar image
1

Answer by tanoshimi · Nov 13, 2016 at 01:22 PM

All of your questions can be answered with a trivial Google search - it's not obvious that you've put in any effort to find the answers yourself - the following took me a few minutes:

  1. Yes. https://docs.unity3d.com/ScriptReference/

  2. Thousands. https://www.assetstore.unity3d.com/

  3. "Prescribing the behaviour of objects in the game" is pretty much the definition of game development. If you're not doing that, you're not making a game.

  4. Anywhere from 10Mb to 10Gb, depending on the complexity of the game.

  5. Unity implements NVidia's PhysX engine. You just specify the mass of objects and the force applied to them, and let it resolve the outcome position, velocty, momentum etc

  6. In pseudocode, camera.depthOfField = player.speed;

  7. You put some lights in your scene. https://unity3d.com/learn/tutorials/topics/graphics/lights

  8. AJAX? That's for client-side web applications. In Unity you'd dynamically load resources using AssetBundles or the Resources folder. https://docs.unity3d.com/Manual/LoadingResourcesatRuntime.html

  9. Using the JSON serialisation helper. https://docs.unity3d.com/Manual/JSONSerialization.html

  10. Using an AudioSource. https://unity3d.com/learn/tutorials/topics/audio/audio-listeners-sources?playlist=17096

  11. Using the animation editor. https://unity3d.com/learn/tutorials/topics/animation/animation-view?playlist=17099

  12. Yes, you can use skeletal animation (https://gamedevelopment.tutsplus.com/tutorials/bone-based-unity-2d-animation-introduction--cms-21364) or a middleware like Spine (http://esotericsoftware.com/)

  13. Yes. http://www.justapixel.co.uk/how-to-make-an-ar-app-in-5-minutes-with-unity-and-vuforia/

Comment
Add comment · Show 1 · 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 hezzl · Nov 13, 2016 at 01:50 PM 0
Share

Thank you friend!

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

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Open Link in New Tab - WebGL 2 Answers

Hi, I have issues with users who are using Galaxy Note 4's, any ideas? 0 Answers

How to use one button to play different audio for different Targets? 0 Answers

Very bad graphics quality and terrible looking shadows in WebGL build 1 Answer

on and off music button in unity 5 0 Answers


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