Sayu Sfp
Sayu Sfp

Reputation: 1

How to export GUI items from Unity

I purchased a UI asset from the Unity Asset Store, which includes buttons and icons organized as prefabs. I would like to extract these elements as images to edit them in Photoshop. How can I accomplish this?

I want to open this asset in Photoshop to edit buttons and icons.

Upvotes: 0

Views: 249

Answers (1)

Johnny Howe
Johnny Howe

Reputation: 66

The images will be stored somewhere in the project.

Here's how you can find them

  • The prefabs (or a child in the prefab) will have Image components.
  • These image components have a Source Image attribute which points to the image to show.
  • Clicking on the value of this attribute will reveal the source image location in the project view.
  • Then right clicking and selecting reveal in explorer or show in finder will bring it up in whatever file viewer you have.

Upvotes: 0

Related Questions