• 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
1
Question by Elmax · Jul 28, 2010 at 07:39 AM · prefabinstancemovietexture

How can i play MovieTextures of Prefab instances independently?

I got multiple instances of a prefab on Stage each using a MovieTexture which plays when the instance gets hit. My problem is that the MovieTexture is not playing independently from the other instances MovieTexture. So when one instance gets hit all instances play the texture. Is there a way to play the MovieTexture of an instance independently from the other instances?

In the prefab script i store the two Materials (hit & default Material) to switch between them on collision. Now when every instance was hit, the MovieTexture plays not only in the instance which was hit. How do i independently play the MovieTexture of the instance?

Script of the prefab:

public var hitMaterial : Material; public var defMaterial : Material;

function Start() { this.gameObject.renderer.material = defMaterial; }

function OnCollisionEnter (collision : Collision) {
if (collision.gameObject.name == "PlayBall") ReflectObject(collision.gameObject); }

function ReflectObject(other : GameObject) {
this.gameObject.renderer.material = hitMaterial; this.gameObject.renderer.material.mainTexture.Stop(); this.gameObject.renderer.material.mainTexture.Play(); }

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

2 Replies

· Add your reply
  • Sort: 
avatar image
1

Answer by jashan · Jul 28, 2010 at 08:25 AM

I think what you need to do is define one material for each game object that should play a different video. You can then assign these different materials and it should work. For testing, you could start with just 2 objects and 2 materials (I haven't tested this myself, and there might be a better solution).

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 Elmax · Jul 28, 2010 at 08:46 AM 0
Share

I tried this already and it doesnt work. As soon as the material uses the same Video as Texture the video is playing simultaneously on every texture which is using it! The only solution i got was to remove the $$anonymous$$ovieTexture after 1sec so that the video is not visible on the other instances. The other way is to duplicate the video before compiling and adding it to a different material. But this dont work because i dont know how many instances will be on stage. It seems that the video is saved in memory an projected to every $$anonymous$$aterial which is using it?! Thanks anyway!

avatar image jashan · Jul 28, 2010 at 08:59 AM 0
Share

Ah, interesting point ... but what you should be able to do is create copies of the movie "on-the-fly" while the game is playing. That should hopefully then finally fix it.

avatar image Elmax · Jul 28, 2010 at 09:10 AM 0
Share

Ah ok! How would you do that? Instantiate the $$anonymous$$ovie or which command is useful in this case?

avatar image
1

Answer by Elmax · Jul 28, 2010 at 09:52 AM

Got it. I need to instantiate the Movie itself and add it to the current Texture. Thanks Jashan for the hint!

Here he working code: (texMovie is the Movie attached to the prefab)

public var texMovie : MovieTexture; private var cloneMovieTexture : MovieTexture;

function Start() { cloneMovieTexture = Instantiate(texMovie); }

function OnCollisionEnter (collision : Collision) {
if (collision.gameObject.name == "PlayBall") ReflectObject(collision.gameObject); }

function ReflectObject(other : GameObject) {
this.gameObject.renderer.material.SetTexture("_MainTex", cloneMovieTexture); this.gameObject.renderer.material.SetTexture("_LightMap", cloneMovieTexture);

 this.gameObject.renderer.material.mainTexture.Stop();
 this.gameObject.renderer.material.mainTexture.Play();

}

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 gabrielstuff · Sep 07, 2013 at 01:25 PM 0
Share

This method works perfectly fine and should be add to the wiki.

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.

Welcome to Unity Answers

The best place to ask and answer questions about development with Unity.

To help users navigate the site we have posted a site navigation guide.

If you are a new user to Unity Answers, check out our FAQ for more information.

Make sure to check out our Knowledge Base for commonly asked Unity questions.

If you are a moderator, see our Moderator Guidelines page.

We are making improvements to UA, see the list of changes.



Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

Cost of loading manually modified instances at runtime, on mobiles? 1 Answer

Possible Bug in Unity 5.4.1? NullReferenceException in console but everything works as expected (no old logs) 0 Answers

How to remove the (Clone) from instantiated prefab C# 2 Answers

Changing the instance, not the Prefab. 2 Answers

How to get all instances of an object in the scen 2 Answers

  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges