class ARScanningManager
(Niantic.Lightship.AR.Scanning.ARScanningManager)
概要
AR](../../index.mdx)シーンのスキャンをプレイバック用に記録するマネージャー。 マネージャーを有効にするとレコーディングが開始されます。 SaveScan()](./index.mdx#SaveScan)を使用して、録画を停止し、ScanPathに保存します。
	class ARScanningManager:SubsystemLifecycleManager< XRScanningSubsystem, XRScanningSubsystemDescriptor, XRScanningSubsystem.Provider > {
	public:
		// fields
	
		 string ScanPath;
		 bool FullResolutionEnabled;
		 string ScanTargetId;
		 bool EnableRaycastVisualization;
		 bool EnableVoxelVisualization;
		 bool UseEstimatedDepth;
		// properties
	
		int ScanRecordingFramerate;
		// メソッド
	
		Texture2D GetRaycastColorTexture();
		Texture2D GetRaycastNormalTexture();
		Texture2D GetRaycastPositionTexture();
		ScanStore GetScanStore();
		async Task SaveScan();
		async Task DiscardScan();
		string GetCurrentScanId();
	protected:
		// メソッド
	
		override void OnBeforeStart();
		override void OnDisable();
};