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
1
Question by StudentWithProblems · Feb 06, 2015 at 01:25 PM · uibeginner

How do I change the texture of a RawImage?

Hello! Thank you for reading this post. I've recently started a project were I'm making a game for kids with my accomplice. The point of the game is that a country and its name is supposed to light up in an orange color when that country is picked through a script that spits out a random number.

The point is then to match the name of country by choosing between three flags on the left. These three will be randomzied, then one will be replaced with the correct answer. How we've done it up to this point is that we've used the UI element RawImage then used flags which we've painted as the texure. Now to my real question, is it possible in anyway to manipulate what texture the RawImage has through scripting? Any suggestions or anwsers are accepted, or if you have a better idea of how to create the system please leave a comment. :D

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

1 Reply

· Add your reply
  • Sort: 
avatar image
6

Answer by TinyDev · Feb 09, 2015 at 10:12 PM

Several ways to set this up.
Here is one: Create a class (say, ImageClass) that exposes properties for your RawImage and Textures. You can use arrays for the textures, create your own custom editor property, etc.

Quick and dirty just to show how to change the texture...your code would need to handle the swap, presumably based on game logic:

The texture property of the RawImage gets/sets the Texture (different from Image, which gets/sets Sprite)

alt text

 using UnityEngine;
 using UnityEngine.UI;
 using System.Collections;
 
 public class ImageClass : MonoBehaviour {
 
     public GameObject ImageOnPanel;  ///set this in the inspector
     public Texture NewTexture;
     private RawImage img;
     
     void Start () {
         img = (RawImage)ImageOnPanel.GetComponent<RawImage>();
         
         img.texture = (Texture)NewTexture;
     }
 
 
     // Update is called once per frame
     void Update () {
     
     }
 }
 

,


changeimageunity.png (44.7 kB)
Comment
Add comment · 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

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

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Why the text and the UI code is can't applying 0 Answers

How do you make a method that gets called when a button gets highlighted using the arrow keys? 0 Answers

Children of prefab disappear in Hierarchy when prefab parent is clicked,Children of prefab disappear in Hierarchy when prefab is clicked 2 Answers

Make UI element or button where a physics raycast can´t pass? Is that possible? 1 Answer

Unity 5.4.0f3 Personal - UI not updating after Build. 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