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
0
Question by fateh · Jun 23, 2012 at 11:08 AM · texturewindowopenpicture

how can put open file window to my project to change texture in my project?

hello every one; i have a box in my stage. i want to put a button that when push it appear open file window that i select a picture then change texture that box .how can i do in your opinion.Good luck.

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

3 Replies

· Add your reply
  • Sort: 
avatar image
0

Answer by Bunny83 · Jun 23, 2012 at 11:38 AM

Unfortunately Unity doesn't offer support for native open / save-dialogs.

See this thread for a custom solution.

Keep in mind that file access is not available in a webbuild.

Comment
Add comment · Show 1 · 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
avatar image
0

Answer by fateh · Jun 23, 2012 at 03:42 PM

thanx Bunny83 for reply but I do not agree with you.

i found something about this maybe useful for you too

alt text

Open File Panel.

 class EditorUtilityOpenFilePanel {
 @MenuItem("Examples/Overwrite Texture")
 static function Apply () {
     var texture : Texture2D = Selection.activeObject;
     if (texture == null) {
         EditorUtility.DisplayDialog(
             "Select Texture",
             "You Must Select a Texture first!",
             "Ok");
         return;
     }
     var path = EditorUtility.OpenFilePanel(
             "Overwrite with png",
             "",
             "png");
     if (path.Length != 0) {
         var www = WWW("file:///" + path);
         www.LoadImageIntoTexture(texture);
     }
 }

}

its main source

Comment
Add comment · Show 2 · 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
avatar image whydoidoit · Jun 23, 2012 at 03:43 PM 1
Share

That only works in the editor...

avatar image Bunny83 · Jun 23, 2012 at 04:17 PM 0
Share

exactly, if you said you want a file open dialog, everyone would think you want that at runtime. If you talk about an editor script you should mention that.

Just to be clear: I used EditorUtility.DisplayDialog a lot in my editor scripts, but i don't really thought this question was about editor program$$anonymous$$g. The link i've posted also suggests EditorUtility.DisplayDialog and it also states that it only works in the editor.

avatar image
0

Answer by Nelien · Jun 23, 2012 at 03:50 PM

Bunny83 is correct. And here's a more direct link to what can get you started.

Unifycommunity Wiki: ImprovedFileBrowser.

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

4 People are following this question.

avatar image avatar image avatar image avatar image

Related Questions

How to display a picture with his own pixel size on a cube? 0 Answers

how to open new window with unity content 1 Answer

Creating a window to get user's textures for a tilemap. 0 Answers

Assigning UV Map to model at runtime 0 Answers

Find out if an Editor window is open 3 Answers


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