コード例 #1
0
        public IList <Vector4> AsColorArray()
        {
            var memory = _GetMemoryAccessor();

            if (this._sparse == null)
            {
                return(memory.AsColorArray());
            }

            var sparseKV = this._sparse._CreateMemoryAccessors(this);

            return(MemoryAccessor.CreateColorSparseArray(memory, sparseKV.Key, sparseKV.Value));
        }