Как поменять программно картинку в Image UI?
Дело в том, что мне нужно заменить/удалить картинку в Source Image, в Инспекторе Image, но по непонятной мне причине, сделать я этого не могу.
Делаю я это примерно вот так:
Используется csharp
GetComponent<Image>() //<— вот это строка не даёт мне покоя, так как там нет ни Image ни Source Image, только Sprite.
Какой параметр мне использовать?
«Улучшение работающего продукта — приводит к его ухудшению.»
-
GameWorld - Старожил
- Сообщения: 620
- Зарегистрирован: 11 янв 2011, 03:02
- Skype: Alien3DModeller
Re: Как поменять программно картинку в Image UI?
Tolking 20 янв 2016, 16:02
спрайт используй
Ковчег построил любитель, профессионалы построили Титаник.
-
Tolking - Адепт
- Сообщения: 2684
- Зарегистрирован: 08 июн 2009, 18:22
- Откуда: Тула
Re: Как поменять программно картинку в Image UI?
GameWorld 20 янв 2016, 16:33
Приведите хоть строку кода, этой реализации.
«Улучшение работающего продукта — приводит к его ухудшению.»
-
GameWorld - Старожил
- Сообщения: 620
- Зарегистрирован: 11 янв 2011, 03:02
- Skype: Alien3DModeller
Re: Как поменять программно картинку в Image UI?
Tolking 20 янв 2016, 18:13
img.sprite = Sprite;
Ковчег построил любитель, профессионалы построили Титаник.
-
Tolking - Адепт
- Сообщения: 2684
- Зарегистрирован: 08 июн 2009, 18:22
- Откуда: Тула
Re: Как поменять программно картинку в Image UI?
Harpo 10 фев 2016, 08:06
Используется csharp
public Image genderIcon;
public Sprite maleIcon;
public Sprite femaleIcon;
где-нибудь в апдейте:
Используется csharp
if(_character.gender == Genders.male)
{
genderImage.sprite = maleIcon;
}
else if(_character.gender == Genders.female)
{
genderImage.sprite = femaleIcon;
}
- Harpo
- UNец
- Сообщения: 7
- Зарегистрирован: 10 фев 2016, 07:57
Вернуться в uGUI
Кто сейчас на конференции
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 3
Mifodiy 0 / 0 / 0 Регистрация: 07.04.2016 Сообщений: 3 |
||||
1 |
||||
22.10.2018, 13:55. Показов 50774. Ответов 10 Метки image, unity3d, спрайты (Все метки)
День добрый.
__________________
0 |
Storm23 10365 / 5096 / 1824 Регистрация: 11.01.2015 Сообщений: 6,226 Записей в блоге: 34 |
||||
22.10.2018, 21:54 |
2 |
|||
Mifodiy, Вот пример:
Этот скрипт вешается на ваш Image.
1 |
0 / 0 / 0 Регистрация: 07.04.2016 Сообщений: 3 |
|
22.10.2018, 22:42 [ТС] |
3 |
Спасибо огромное!
0 |
0 / 0 / 0 Регистрация: 04.07.2016 Сообщений: 6 |
|
11.04.2020, 16:22 |
4 |
Можешь про свой скрипт немного рассказать, просто я сейчас по нажатию хочу поменять картинку, но чет не вдупляю, откуда должны браться сами картинки
0 |
MrFelix 74 / 52 / 25 Регистрация: 08.03.2020 Сообщений: 243 |
||||
11.04.2020, 16:32 |
5 |
|||
Врядли он тебе подскажет, ибо тема 2018 года )
Добавлено через 52 секунды Добавлено через 1 минуту
0 |
Katurina 2 / 2 / 0 Регистрация: 01.02.2017 Сообщений: 16 |
||||
13.04.2020, 19:22 |
6 |
|||
Картинка должна лежать в папке Assets/Resourses в проекте Unity (та на которую меняешь)
ps При этом надо очень внимательно с именем (одна опечатка и код работать не будет)
0 |
74 / 52 / 25 Регистрация: 08.03.2020 Сообщений: 243 |
|
13.04.2020, 19:58 |
7 |
ps При этом надо очень внимательно с именем (одна опечатка и код работать не будет) Вот именно и вам тоже ))
0 |
0 / 0 / 0 Регистрация: 13.12.2020 Сообщений: 1 |
|
13.12.2020, 11:22 |
8 |
Этот скрипт вешается на ваш Image. Можете кто-нибудь объяснить, как повесить скрипт на Image
0 |
250 / 186 / 68 Регистрация: 04.03.2019 Сообщений: 1,010 |
|
16.12.2020, 23:44 |
9 |
JordyBordy, просто потянуть скрипт в нужное место.
0 |
0 / 0 / 0 Регистрация: 22.02.2021 Сообщений: 1 |
|
22.02.2021, 20:54 |
10 |
Добавлено через 2 минуты
0 |
0 / 0 / 0 Регистрация: 05.02.2022 Сообщений: 1 |
|
05.02.2022, 18:16 |
11 |
это значит, что имя скрипта не совпадает с именем класса
0 |
Automatic Instantiation
Usually when you want to make a modification to any sort of game assetAny media or data that can be used in your game or Project. An asset may come from a file created outside of Unity, such as a 3D model, an audio file or an image. You can also create some asset types in Unity, such as an Animator Controller, an Audio Mixer or a Render Texture. More info
See in Glossary, you want it to happen at runtime and you want it to be temporary. For example, if your character picks up an invincibility power-up, you might want to change the shaderA small script that contains the mathematical calculations and algorithms for calculating the Color of each pixel rendered, based on the lighting input and the Material configuration. More info
See in Glossary of the materialAn asset that defines how a surface should be rendered, by including references to the Textures it uses, tiling information, Color tints and more. The available options for a Material depend on which Shader the Material is using. More info
See in Glossary for the player character to visually demonstrate the invincible state. This action involves modifying the material that’s being used. This modification is not permanent because we don’t want the material to have a different shader when we exit Play Mode.
However, it is possible in Unity to write scriptsA piece of code that allows you to create your own Components, trigger game events, modify Component properties over time and respond to user input in any way you like. More info
See in Glossary that will permanently modify a source asset. Let’s use the above material example as a starting point.
To temporarily change the material’s shader, we change the shader property of the material component.
private var invincibleShader = Shader.Find ("Specular");
function StartInvincibility {
renderer.material.shader = invincibleShader;
}
When using this script and exiting Play Mode, the state of the material will be reset to whatever it was before entering Play Mode initially. This happens because whenever renderer.material is accessed, the material is automatically instantiated and the instance is returned. This instance is simultaneously and automatically applied to the renderer. So you can make any changes that your heart desires without fear of permanence.
Direct Modification
IMPORTANT NOTE
The method presented below will modify actual source asset files used within Unity. These modifications are not undoable. Use them with caution.
Now let’s say that we don’t want the material to reset when we exit play mode. For this, you can use renderer.sharedMaterial. The sharedMaterial property will return the actual asset used by this renderer (and maybe others).
The code below will permanently change the material to use the Specular shader. It will not reset the material to the state it was in before Play Mode.
private var invincibleShader = Shader.Find ("Specular");
function StartInvincibility {
renderer.sharedMaterial.shader = invincibleShader;
}
As you can see, making any changes to a sharedMaterial can be both useful and risky. Any change made to a sharedMaterial will be permanent, and not undoable.
Applicable Class Members
The same formula described above can be applied to more than just materials. The full list of assets that follow this convention is as follows:
- Materials: renderer.material and renderer.sharedMaterial
- Meshes: meshFilter.meshThe main graphics primitive of Unity. Meshes make up a large part of your 3D worlds. Unity supports triangulated or Quadrangulated polygon meshes. Nurbs, Nurms, Subdiv surfaces must be converted to polygons. More info
See in Glossary and meshFilter.sharedMesh - Physic MaterialsA physics asset for adjusting the friction and bouncing effects of colliding objects. More info
See in Glossary: colliderAn invisible shape that is used to handle physical collisions for an object. A collider doesn’t need to be exactly the same shape as the object’s mesh — a rough approximation is often more efficient and indistinguishable in gameplay. More info
See in Glossary.material and collider.sharedMaterial
Direct Assignment
If you declare a public variable of any above class: Material, Mesh, or Physic Material, and make modifications to the asset using that variable instead of using the relevant class member, you will not receive the benefits of automatic instantiation before the modifications are applied.
Assets that are not automatically instantiated
There are two different assets that are never automatically instantiated when modifying them.
- Texture2D
- TerrainData
Any modifications made to these assets through scripting are always permanent, and never undoable. So if you’re changing your terrainThe landscape in your scene. A Terrain GameObject adds a large flat plane to your scene and you can use the Terrain’s Inspector window to create a detailed landscape. More info
See in Glossary’s heightmapA greyscale Texture that stores height data for an object. Each pixel stores the height difference perpendicular to the face that pixel represents.
See in Glossary through scripting, you’ll need to account for instantiating and assigning values on your own. Same goes for Textures. If you change the pixelsThe smallest unit in a computer image. Pixel size depends on your screen resolution. Pixel lighting is calculated at every screen pixel. More info
See in Glossary of a texture file, the change is permanent.
iOS and Android Notes
Texture2D assets are never automatically instantiated when modifying them in iOSApple’s mobile operating system. More info
See in Glossary and Android projects. Any modifications made to these assets through scripting are always permanent, and never undoable. So if you change the pixels of a texture file, the change is permanent.