using UnityEditor;
using UnityEngine;
using System.Collections;
public class PackageIcons
{
[MenuItem("Assets/PackageIcons")]
static void DoPackageIcons()
{
// Build the resource file from the active selection.
string [] assetNames = new string[Selection.objects.Length];
for (int i = 0; i < Selection.objects.Length; ++i)
{
assetNames[i] = System.IO.Path.GetFileName(Selection.objects[i].name);
}
BuildPipeline.BuildAssetBundleExplicitAssetNames(Selection.objects, assetNames, "Assets/P4Connect/Editor/Icons.pack", BuildAssetBundleOptions.UncompressedAssetBundle);
}
}
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #1 | 12954 | anis_sg |
Populate -o //guest/perforce_software/p4connect/... //guest/anis_sg/perforce_software/p4connect/.... |
||
| //guest/perforce_software/p4connect/src/Assets/P4Connect/Editor/PackageIcons.cs | |||||
| #1 | 10940 | Norman Morse |
Inital Workshop release of P4Connect. Released under BSD-2 license |
||