Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Demkeys/dea9eccf771c1fb33f712a78ec04997f to your computer and use it in GitHub Desktop.
Save Demkeys/dea9eccf771c1fb33f712a78ec04997f to your computer and use it in GitHub Desktop.
Template file2 for ECS boilerplate code in Unity. Name this file '94-ECS__ECS System C# Script-ECSNewSystemScript.cs.txt'.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Unity.Burst;
using Unity.Collections;
using Unity.Entities;
using Unity.Jobs;
using Unity.Mathematics;
using Unity.Transforms;
public class #SCRIPTNAME# : ComponentSystem
{
ComponentGroup m_group;
protected override void OnCreateManager()
{
}
protected override void OnUpdate()
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment