示例#1
0
        public override void Export(Stream output)
        {
            BaseNode node = this.GetChildNode <TextureData>();

            if (node == null)
            {
                throw new InvalidOperationException();
            }
            node.Export(output);
        }
示例#2
0
        public override void Export(Stream output)
        {
            BaseNode node = this.GetSubImageNode();

            if (node == null)
            {
                throw new InvalidOperationException();
            }
            node.Export(output);
        }