// // /*=============================================================================== // // Copyright (C) 2025 PhantomsXR Ltd. All Rights Reserved. // // // // This file is part of the Phantom.XRMOD.QuestModule.Runtime. // // // // The XR-MOD cannot be copied, distributed, or made available to // // third-parties for commercial purposes without written permission of PhantomsXR Ltd. // // // // Contact nswell@phantomsxr.com for licensing requests. // // ===============================================================================*/ using Phantom.XRMOD.Core.Runtime; namespace Phantom.XRMOD.QuestModule.Runtime { /// /// Command to build and initialize the Meta Quest Occlusion feature. /// /// This command creates an instance of to handle environmental occlusion. /// /// public class BuildMetaQuestOcclusionFeatureCommand : BaseBuildFeature, ICommand, IReleaseCommand { /// /// Executes the command to create the feature. /// public void Execute() { base.Create(); } /// /// Releases the feature. /// /// Optional project name context. public void Release(string _projectName = default) { base.ReleaseFeature(); } } }