コード例 #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);
        }