API_Module_SkyBox.cs 356 B

123456789101112131415
  1. 
  2. using SC.XR.Unity.Module_SDKVersion;
  3. using SC.XR.Unity.Module_Device;
  4. using System;
  5. using System.Collections;
  6. using System.Collections.Generic;
  7. using UnityEngine;
  8. using SC.XR.Unity.Module_SkyBox;
  9. public class API_Module_SkyBox {
  10. public static Material GetSkyBox(SkyBoxType type) {
  11. return Module_SkyBox.getInstance.GetSkyBox(type);
  12. }
  13. }