No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

GenericEditorFieldEditEventSenderHelpers.cs 557B

1234567891011121314151617
  1. namespace UnityEditor.Purchasing
  2. {
  3. static class GenericEditorFieldEditEventSenderHelpers
  4. {
  5. internal static void SendCatalogEditEvent(string fieldName)
  6. {
  7. BuildAndSendEvent(EventComponents.k_ComponentCodeless, EventTools.k_ToolCatalog, fieldName);
  8. }
  9. static void BuildAndSendEvent(string component, string action, string name)
  10. {
  11. var newEvent = new GenericEditorEditFieldEvent(component, action, name);
  12. PurchasingServiceAnalyticsSender.SendEvent(newEvent);
  13. }
  14. }
  15. }