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
0
Question by carter-carl30 · Jul 05, 2016 at 07:00 PM · texturearraytriggerdetect

Help detecting texture once inside trigger object

Hi everyone, I am trying to make a slot machine for my game.

I have 3 reels that spin with a box object on each reel (so everytime I spin these 3 gameobjects one over each reel always land in the trigger in a line), to make things random I have this script to change the texture on the objects (seperate scripts same content apart from changed mesh and txt to mesh1 txt1 for the second reel and mesh2 txt2) for the third each time I spin the reels on a trigger object over each reel:

 var txt : Texture2D[];
 var mesh : GameObject;
 var trigger : GameObject;
 var hold_1 : GameObject;
 
 function OnTriggerExit(other: Collider) {
 
 mesh.GetComponent.<Renderer>().material.mainTexture = txt[Random.Range(0, txt.Length)];
 
 if(hold_1.GetComponent.<Renderer>().enabled == false){
 
 trigger.active = false;
 
 }
 }

so when i press my spin button the reels spin and when the reels stop the gameobjects have a random texture assigned to it from textures in an array for example object on reel 1 "apple" object on reel 2 "orange" object on reel 3 "cherry".

I am trying to make it so when these objects come to stop and all of them have the same "apple" "apple" "apple" it will win. I have a box marked as a trigger and this script below attached to detect the win:

 var txt : Texture2D[];
 var mesh : GameObject;
 var txt1 : Texture2D[];
 var mesh1 : GameObject;
 var txt2 : Texture2D[];
 var mesh2 : GameObject;
 var prize : boolean;
 var trigger : GameObject;
 
 function OnTriggerStay(other: Collider) {
  
  
 if(mesh.renderer.material.name == "apple (Instance)" && mesh1.renderer.material.name == "apple (Instance)" && mesh2.renderer.material.name == "apple (Instance)") {
 
 prize = true;
 }
 
 if(prize == true){
 
 win();
 
     }
     
 }
 //}
 
 function win(){
 
 yield WaitForSeconds(1);
 
 flash.active = true;
 
 yield WaitForSeconds(2);
 
 flash.active = false;
 
 if(flash.active == false){
 
 prize = false;
 }
 }

I want to detect which texture the array script has assign to the reel object so if all three match it will trigger a win (say fireworks or a sound).

I am lost trying to do this, when I look in the inspector everytime I spin and it stops the material is always "apple (Instance)" as you can see i tried detecting this but nothing...

can anyone please help me? sorry if this seems rambling, trying to explain what i've done

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

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

80 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 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 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 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 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 load a folder of textures automatically to an array of Raw Images? 2 Answers

Trigger detects player collision and play specific audio from array 1 Answer

Adam Texture Arrays 0 Answers

Texture2D to Plane: Array Index is Out of Range 1 Answer

Load PNG images to array and use as textures 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