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 SilverFoxMedia · Aug 01, 2012 at 03:08 AM · shaderinspectoraddcomponentpublic variableimage effect

Component not being added with predefined public variables

I have written a script that adds an image effect to the main camera for 30 seconds before wearing off, at which point the image effect is removed and an AudioClip is played.

This would all work except the image effect is added without the shaders that I set up on the script inside the Inspector. This is also the case with the AudioClip which was also set up in the Inspector, when the below script is added from another script using AddComponent() the AudioClip is left out.

 #pragma strict
 @script AddComponentMenu("Abilities/Night Vision Effect")
 
 private var duration : float = 30.0;
 private var timer : float = 0.0;
 private var nightVision : NightVision;

 public var wearOff : AudioClip; //Defined in the Inspector...
 
 function Start () {
  timer = Time.time + duration;
  //Add night vision and store a reference to call Destroy on later.
  nightVision = camera.main.gameObject.AddComponent(NightVision);
 }
 
 function Update () {
  if (Time.time > timer) {
  //Play wear off sound if it was assigned in the inspector
  if (wearOff != null) {
  AudioSource.PlayClipAtPoint(wearOff, Vector3.zero, PlayerPrefs.GetFloat("PREF_audio_effects", 0.85));
  }
  //Destroy night vision component and this component
  Destroy(nightVision);
  Destroy(this);
  }
 }

I'm not understanding why the shaders aren't getting added with the image effect component as well as why the AudioClip is going missing, is there another method for doing such a thing?

Comment
Add comment · Show 2
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 Bunny83 · Aug 01, 2012 at 03:34 AM 0
Share

Do you mean you setup default references on the script itself? Or where did you set the AudioClip. Also do you talke abour this

NightVision script? This one get's it's own shader when the script becomes active.

Default References are an editor feature. When you use AddComponent from a Script the default references aren't set. You need to create a prefab which is actually able to serialize such references as an asset.

avatar image SilverFoxMedia · Aug 01, 2012 at 05:01 AM 0
Share

Yeah, I was setting up the AudioClip and Shaders in the default references for each script. Using 'Shader.Find' to access the shaders for the image effect like in that NightVision script you mentioned seems to have fixed the issue of the missing shaders.

0 Replies

· Add your reply
  • Sort: 

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

7 People are following this question.

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

Related Questions

Variables assigned in the inspector of a script don't seem to work when instantiating them via AddComponent 0 Answers

This shader (or Image Effect) is not working on Android 0 Answers

Material instantiation problem 1 Answer

How to prevent the value in the Inspector from overriding the value in a script? 4 Answers

Adding in other variables through the inspector in a public string 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