If you appreciate the work done within the wiki, please consider supporting The Cutting Room Floor on Patreon. Thanks for all your support!

Proto:Command & Conquer: Generals/Build 98 Alpha/Image.gdf

From The Cutting Room Floor
Jump to navigation Jump to search

This is a sub-page of Proto:Command & Conquer: Generals/Build 98 Alpha.

Image.gdf


// UVRect =====================================================================
// ============================================================================
ItemType: GFX/UVRect
{
	Integer: Left
	{
		Default: 0;
	};
	Integer: Top
	{
		Default: 0;
	};
  Integer: Right
	{
		Default: 1;
	};
  Integer: Bottom
	{
		Default: 1;
	};
};

// ImageSize ==================================================================
// ============================================================================
ItemType: GFX/ImageSize
{
  Integer: Width
	{
		Default: 1;
	};
  Integer: Height
	{
		Default: 1;
	};
};

// Image ======================================================================
// ============================================================================
ItemType: GFX/Image
{
	AssetReference: Texture
	{
		AssetSet: Textures;
	};
	Item: TextureCoords
	{
		ItemType: GFX/UVRect;
	};
  Item: TextureSize
  {
    ItemType: GFX/ImageSize;
  };
  Integer: Rotated90C
  {
  	Default: 0;
  };
};