Skip to content

Instantly share code, notes, and snippets.

View JoeCoo7's full-sized avatar

Matthias Schindler JoeCoo7

View GitHub Profile
@JoeCoo7
JoeCoo7 / Components
Last active January 20, 2020 19:45
Component Transform with Scale
using Unity.Entities;
using Unity.Mathematics;
//----------------------------------------------------------------------------------------
[System.Serializable]
public struct ModelMatrix : IComponentData
{
public float4x4 Value
}
public class ModelMatrixComponent : ComponentDataWrapper<ModelMatrix> { }