Skip to content

Instantly share code, notes, and snippets.

@tsubaki
Created April 15, 2018 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tsubaki/949e646b4db21dd21249a6b06692b68a to your computer and use it in GitHub Desktop.
Save tsubaki/949e646b4db21dd21249a6b06692b68a to your computer and use it in GitHub Desktop.
ECSハイブリット2
using Unity.Entities;
[System.Serializable]
public struct ScreenRange : ISharedComponentData
{
public int min, max;
}
using Unity.Entities;
public class ScreenRangeComponent : SharedComponentDataWrapper<ScreenRange>{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment