devNotes 5-10-16 patterns, particle system internals, crossfades

jsojdojsod Digital_Sound_Generation_2

pivo

eight

 

fibonacci

AssetDatabase.CreateAsset

public static void CreateAsset(Object asset, string path);

Parameters

asset Object to use in creating the asset.
path Filesystem path for the new asset.

Creates a new asset at path.

You must ensure that the path uses a supported extension (‘.mat’ for materials, ‘.cubemap’ for cubemaps, ‘.GUISkin’ for skins, ‘.anim’ for animations and ‘.asset’ for arbitrary other assets.)

You can add more assets to the file using AssetDatabase.AddObjectToAsset after the asset has been created. If an asset already exists at path it will be deleted prior to creating a new asset. All paths are relative to the project folder, for example: “Assets/MyStuff/hello.mat”.

Be aware that if adding multiple objects to an asset, the order in which the objects are added does not really matter. In other words, asset will not be special within the asset and not be any form of “root” to objects added later. The object displayed as the asset’s main object in the project view is the one that is considered most important (decided based on type) within the collection of objects.

 

 

dfghfghd2