SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
ISpriteAggregator.cs
1 //-----------------------------------------------------------------
2 // Copyright 2010 Brady Wright and Above and Beyond Software
3 // All rights reserved
4 //-----------------------------------------------------------------
5 
6 
7 using UnityEngine;
8 using System.Collections;
9 
10 
11 public delegate Object LoadAssetDelegate(string path, System.Type type);
12 public delegate string PathFromGUIDDelegate(string path);
13 public delegate string GUIDFromPathDelegate(string guid);
14 
15 public delegate string GetAssetPathDelegate(Object asset);
16 
17 
18 // Provides a common interface for aggregating,
19 // extracting, and assigning information relevant
20 // to texture atlas packing and subsequent UV (and
21 // other info) assignment.
22 public interface ISpriteAggregator
23 {
24  // Collects all textures intended for packing,
25  // as well as sprite frames, together into a
26  // standard form for processing.
27  // Receives a delegate reference to AssetDatabase.LoadAssetAtPath
28  void Aggregate(PathFromGUIDDelegate guid2Path, LoadAssetDelegate load, GUIDFromPathDelegate path2Guid);
29 
30  // Provides access to the array of source textures.
31  // NOTE: Should be ordered to parallel the
32  // SpriteFrames array.
33  Texture2D[] SourceTextures
34  {
35  get;
36  }
37 
38  // Provides access to the array of Sprite Frames.
39  // NOTE: Should be ordered to parallel the
40  // SourceTextures array.
41  CSpriteFrame[] SpriteFrames
42  {
43  get;
44  }
45 
46  // Used for retrieving the material used by
47  // the object for the purposes of building an
48  // atlas texture for it.
49  Material GetPackedMaterial(out string errString);
50 
51  CSpriteFrame DefaultFrame
52  {
53  get;
54  }
55 
56  void SetUVs(Rect uvs);
57 
58  GameObject gameObject
59  {
60  get;
61  }
62 
63  bool DoNotTrimImages
64  {
65  get;
66  }
67 }