Legacy Documentation: Version 2018.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

UnsafeUtility.MemCpyStride

public static void MemCpyStride(void* destination, int destinationStride, void* source, int sourceStride, int elementSize, int count);

Description

Similar to UnsafeUtility.MemCpy but can skip bytes via desinationStride and sourceStride.

// Functional equivalent to this (But with various optimizations)
for (int i = 0; i != count; i++)
{
    UnsafeUtility.MemCpy(destination, source, elementSize);
    destination += destinationStride;
    destination += sourceStride;
}

Did you find this page useful? Please give it a rating: