GithubHelp home page GithubHelp logo

assetstools.net_unity's Introduction

AssetsTools.NET for Unity Projects

A special version of AssetsTools.NET that you can use in your Unity Projects.

Currently only supports U5.6.0f3.

Usage

Loading a file

The easiest way to manage loading multiple files is to use AssetsManager:

public AssetsManager assetsManager;
public void Sample() {
	string assetRootDir = "pathToFolderWithAssetsFile";
	using (FileStream assetStream = new FileStream("pathToAssetsFile", FileMode.Open)) {
		assetsManager = new AssetsManager();
		assetsManager.LoadAssets(assetStream, assetRootDir);
		assetsManager.LoadClassFile(Path.Combine(Application.StartupPath, "cldb.dat"));
	}
}

This will load all dependencies on the assets file. It also loads the class file which you can get from UABE by (Options => Edit Type Database => classdata.tpk => uncheck compress the file and export U5.6.0f3).

From here you can find an asset by its id and reading a property.

public AssetsManager assetsManager;
public void Sample() {
	...
	
    AssetFileInfoEx afi = assetsManager.initialTable.getAssetInfo(5);
    AssetTypeInstance ati = assetsManager.GetATI(assetsManager.file, afi);
    
    MessageBox.Show(ati.GetBaseField().Get("m_Name").GetValue().AsString());
    
	assetsManager.file.Close();
	assetsManager.classFile.Close();
	foreach (AssetsManager.Dependency dep in assetsManager.dependencies)
		dep.file.Close();
}

Chrck out the original here!

assetstools.net_unity's People

Contributors

nesrak1 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.