Unity Plugin Development--assetdatabase

Source: Internet
Author: User

Assetdatebase is also a static class, and his role is to manage all the files of the project (typically "assets"). Intuitively, you can manage everything in the entire project window, such as adding, deleting, modifying files, and so on.

Here are a few that are often used:

Createasset: Creating Files

CreateFolder: Creating a Folder

Deleteasset: Deleting files

Getassetpath: Gets the relative position of the file relative to the directory where Assets is located, such as "Assets/images/test.png"

Loadassetatpath: Loading files

Refresh: Refreshes the entire project window

Saveassets: Save All Files

Example (implement right-click on a file or folder, select Myeditor/delete Asset menu, delete the selected file or folder):

123456789101112 using unityeditor;   public class EditorCase1 {       [MenuItem ( "Assets/myeditor/delete Asset" )]       public static void casemenu ()      {          var obj = selection.activeobject;          var path = Assetdatabase.getassetpath (obj);          assetdatabase.deleteasset (path);      } }

Unity Plugin Development--assetdatabase

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.