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 /
This question was closed Jun 11, 2013 at 08:00 PM by Graham-Dunnett for the following reason:

Duplicate Question

avatar image
0
Question by FrreStuff · Jun 10, 2013 at 07:27 AM · audio

Audio script doesn't work

Hi everyone so i have this script which for some reason doesn't work. What i want the script to do is just play a ambient sound troughout all of the scenes expect for 1 specific scene. Like i said it doesn't work for some reason this is my script

function Awake () { DontDestroyOnLoad (transform.gameObject);

if(Application.loadedLevel) == ("BehindLocks") audio.Stop(); }

Comment
Comments Locked · Show 4
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 KiraSensei · Jun 10, 2013 at 07:44 AM 0
Share

Do you have an audio source attached to the game object containing this script ?

You never play the audio, you only stop it. Is it normal ?

You say that the script does not work, tell us what it should do, and what it is actually doing.

avatar image FrreStuff · Jun 10, 2013 at 01:44 PM 0
Share

Yes i have an audio source atached to the game object which is containing the script. i have the audio playing on awake so every time i start the game the audio starts playing. The thing that is wrong is that unity says that there is an unexpected token "==" and it says ";" expected insert a semicolom at the end. The script should play a sound troughout the whole game expect for a particular scene : the "BehindLocks" scene

avatar image Chronos-L · Jun 10, 2013 at 02:22 PM 1
Share

You will see that your code is erroneous when you format them correctly.

 function Awake () {
    DontDestroyOnLoad (transform.gameObject);

    // 2 mistake:
    // 1. $$anonymous$$arked by the huh down below, wrong syntax
    // 2. Application.loadedLevel is an int
    if(Application.loadedLevel) == ("BehindLocks") <- Huh?
       audio.Stop();
 }

Correction:

 function Awake () {
    DontDestroyOnLoad (transform.gameObject);
    if( Application.loadedLevelName == "BehindLocks" )
       audio.Stop();
 }
avatar image FrreStuff · Jun 10, 2013 at 02:40 PM -1
Share

for some reason when i enter the "BehindLocks" scene the sound doesn't stop but just keeps playing for some reason Thanks eventough it didn't work

0 Replies

  • Sort: 

Follow this Question

Answers Answers and Comments

16 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

Related Questions

How to play several audio cllips one after another. 3 Answers

Audio after Audio Loop 1 Answer

Play audio on keyboard click? 1 Answer

Pausing and playing audio on key press? 1 Answer

one shot Sound on collision. Unity 4.0 problem. 2 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