설명 없음
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.

Importer.cs 320B

123456789101112131415
  1. using System;
  2. using UnityEditor.Build;
  3. using UnityEditor.Purchasing;
  4. namespace UnityEditor
  5. {
  6. [InitializeOnLoad]
  7. internal class PurchasingImporter
  8. {
  9. static PurchasingImporter()
  10. {
  11. PurchasingSettings.ApplyEnableSettings(EditorUserBuildSettings.activeBuildTarget);
  12. }
  13. }
  14. }