x


Any/best way to add a texture in Editor?

I'm making an script which requires a mesh and a texture. Therefore it requires also a material. That is it is a run-time component, but it draws gizmos (the mesh) but it needs a little setup first. I don't really want to burden the user with making a material by hand. I'd rather have them just drop a texture on my component, and have it somehow create the material for them. The material needs to exist while not running (while editing) because it needs to be rendered like gizmos. Works fine if I make a material and assign it, but I want to simplify this. Possible? How?

more ▼

asked May 10 '12 at 09:00 PM

JimmyJJeeter gravatar image

JimmyJJeeter
131 7 8 11

(comments are locked)
10|3000 characters needed characters left

2 answers: sort voted first

You should be able to save a material that is created dynamically by an editor script using UnityEditor.AssetDatabase.CreateAsset. As @rutter explains you will probably need to create your own custom editor as well.

http://unity3d.com/support/documentation/ScriptReference/AssetDatabase.CreateAsset.html

more ▼

answered May 10 '12 at 11:49 PM

numberkruncher gravatar image

numberkruncher
1.8k 36 46 57

thanks but I don't really want to have them show up in the Project or be saved as assets that way

May 12 '12 at 06:41 AM JimmyJJeeter
(comments are locked)
10|3000 characters needed characters left

Sounds like you might be able to manage this with a custom inspector that watches out for texture changes, and automatically creates, configures, or adds new materials and components as needed.

For more information on writing your own inspectors, see the Editor class, CustomEditor attribute, and extending the editor manual page. This is an area of Unity many beginners find overwhelming, but if you have the time and ability to figure it out then you can potentially save yourself and your project a lot of time.

more ▼

answered May 10 '12 at 09:30 PM

rutter gravatar image

rutter
5.1k 2 11

(comments are locked)
10|3000 characters needed characters left
Your answer
toggle preview:

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

By Email:

Once you sign in you will be able to subscribe for any updates here

By RSS:

Answers

Answers and Comments

Topics:

x3317
x1664
x807

asked: May 10 '12 at 09:00 PM

Seen: 631 times

Last Updated: May 12 '12 at 06:44 AM