Skip to content

GameCalendarKit.EventsCollectionCreator

Nick edited this page May 2, 2017 · 6 revisions

EventsCollectionCreator editor extension

Allows you to create event collection preset.

Find this tool in "Assets -> Game Calendar Kit -> Event Collection Creator"

Use partial keyword to extend basic class and create your own realization.

    public partial class EventsCollectionCreator : EditorWindow

Partial Methods

  • CreateNewEvent is method for creating new event.
    partial void CreateNewEvent();
  • ShowPrefeences is method to draw Object fields, collection name, and button "Create new collection".
    partial void ShowPrefeences();
  • ShowCalendar is method to draw calendar and controlls to set info to new event.
    partial void ShowCalendar();
  • ShowEvents is method to show all created event and possibility to delete it.
    partial void ShowEvents();

Clone this wiki locally