This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using Oculus.Haptics; | |
using UnityEngine; | |
public class HapticsManager : MonoBehaviour | |
{ | |
public static HapticsManager Instance; | |
[SerializeField] private HapticClip clip1; | |
[SerializeField] private HapticClip clip2; | |
[SerializeField] private HapticClip clip3; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using UnityEngine; | |
using UnityEngine.InputSystem; | |
using UnityEngine.XR.ARFoundation; | |
public class TogglePassthrough : MonoBehaviour | |
{ | |
[SerializeField] | |
private InputActionProperty toggleAction; | |
private ARCameraManager arCameraManager; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using Unity.XR.CoreUtils; | |
using UnityEngine.InputSystem; | |
using UnityEngine.XR.ARSubsystems; | |
namespace UnityEngine.XR.ARFoundation.Samples | |
{ | |
[RequireComponent(typeof(ARAnchorManager))] | |
[RequireComponent(typeof(ARRaycastManager))] | |
public class AnchorCreatorV2 : MonoBehaviour |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import socket | |
from time import sleep | |
INTERVAL = 0.2 | |
if __name__ == "__main__": | |
local_ip = '' | |
local_port = 8890 | |
socket = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) # socket for sending cmd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.XR.ARFoundation; | |
using UnityEngine.XR.ARSubsystems; | |
using UnityEngine.XR.Interaction.Toolkit.AR; | |
public class ARPlacementInteractableSingle : ARBaseGestureInteractable | |
{ | |
[SerializeField] | |
[Tooltip("A GameObject to place when a raycast from a user touch hits a plane.")] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using UnityEngine; | |
using UnityEngine.EventSystems; | |
using UnityEngine.UI; | |
using UnityEngine.XR.ARFoundation; | |
[RequireComponent(typeof(ARRaycastManager))] | |
public class PlacementWithManySelectionWithScaleController : MonoBehaviour | |
{ | |
[SerializeField] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#if UNITY_ANDROID | |
using System.Reflection; | |
using System.Xml; | |
using UnityEngine; | |
using UnityEngine.Rendering; | |
using UnityEditor.Android; | |
using UnityEditor.Build; | |
using UnityEditor.Build.Reporting; | |
namespace UnityEditor.XR.Oculus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" standalone="no"?> | |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | |
android:installLocation="auto"> | |
<uses-feature android:name="android.hardware.vr.headtracking" android:version="1" android:required="true" /><!-- Request the headset DoF mode --> | |
<uses-feature android:name="oculus.software.handtracking" android:required="true" /><uses-permission android:name="oculus.permission.handtracking" /><!-- Request the headset handtracking mode --> | |
<application | |
android:label="@string/app_name" | |
android:icon="@mipmap/app_icon"> | |
<activity | |
android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE VIEW [dbo].[vwCustomerUpload] | |
AS | |
SELECT | |
MAX([ocp].[OnlineCustomerPersonID]) as [OnlineCustomerPersonID], | |
MAX([ocp].[Email]) as [Email], | |
MAX([ocp].[Password]) as [Password], | |
MAX([ocp].[DemoID]) as [DemoID], | |
MAX([ocp].[FirstName]) as [FirstName], | |
MAX([ocp].[LastName]) as [LastName], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Copying provisioning profile..." | |
cp ./embedded.provisionprofile ./Cubiques.app/Contents/ | |
echo "Copying plist template..." | |
cp ./Info.plist ./Cubiques.app/Contents/ | |
echo "Starting Signing..." | |
codesign -f --deep -s "3rd Party Mac Developer Application: Dilmer Valecillos" --entitlements "./Cubiques.entitlements" ./Cubiques.app/Contents/Frameworks/MonoEmbedRuntime/osx/libmono.0.dylib | |
codesign -f --deep -s "3rd Party Mac Developer Application: Dilmer Valecillos" --entitlements "./Cubiques.entitlements" ./Cubiques.app/Contents/Frameworks/MonoEmbedRuntime/osx/libMonoPosixHelper.dylib |
NewerOlder