Skip to content

Instantly share code, notes, and snippets.

@mu-777
Last active February 21, 2021 01:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mu-777/540598343c3c66d1dbee384267977dd0 to your computer and use it in GitHub Desktop.
Save mu-777/540598343c3c66d1dbee384267977dd0 to your computer and use it in GitHub Desktop.
RealsenseInAndroid
package com.intel.realsense.librealsense;
import android.content.Context;
import com.unity3d.player.UnityPlayer;
public class DeviceConnect {
private static DeviceWatcher mDeviceWatcher;
DeviceConnect() {
Context context = UnityPlayer.currentActivity;
if(mDeviceWatcher == null){
mDeviceWatcher = new DeviceWatcher(context);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment