SpriteManager 2
 All Classes Functions Variables Enumerations Enumerator Properties
PackableStub.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 
12 // Provides a common parent stub class for
13 // packable/aggregated sprite-based objects.
14 public abstract class PackableStub : MonoBehaviour
15 {
16  // Collects all textures intended for packing,
17  // as well as sprite frames, together into a
18  // standard form for processing.
19  // Receives a delegate reference to AssetDatabase.LoadAssetAtPath
20  public abstract void Aggregate(PathFromGUIDDelegate guid2Path, LoadAssetDelegate load, GUIDFromPathDelegate path2Guid);
21 
22  // Provides access to the array of source textures.
23  // NOTE: Should be ordered to parallel the
24  // SpriteFrames array.
25  public abstract Texture2D[] SourceTextures
26  {
27  get;
28  }
29 
30  // Provides access to the array of Sprite Frames.
31  // NOTE: Should be ordered to parallel the
32  // SourceTextures array.
33  public abstract CSpriteFrame[] SpriteFrames
34  {
35  get;
36  }
37 
38  // Used for retrieving the material used by
39  // the object for the purposes of building an
40  // atlas texture for it.
41  public abstract Material GetPackedMaterial(out string errString);
42 
43  public abstract CSpriteFrame DefaultFrame
44  {
45  get;
46  }
47 
48  public abstract void SetUVs(Rect uvs);
49 
50  public abstract bool DoNotTrimImages
51  {
52  get;
53  set;
54  }
55 }