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 | |
# Set the directory | |
directory=$1 | |
# If no directory was specified, use the current working directory | |
if [ -z "$directory" ] | |
then | |
directory=$(pwd) | |
fi |
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 | |
git submodule foreach -q --recursive 'echo $name && git switch -C $(git name-rev --exclude=refs/tags/\* --name-only $(git rev-parse @{-1}))' |
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
// https://superuser.com/questions/13653/how-to-set-the-default-program-for-opening-files-without-an-extension-in-windows | |
assoc .="No Extension" | |
ftype "No Extension"="C:\Program Files\Microsoft VS Code\Code.exe" "%1" |
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; | |
using System.IO; | |
using LibVLCSharp.Shared; | |
namespace test_microphone_recording | |
{ | |
internal class Program | |
{ | |
private static MemoryStream stream; | |
private static LibVLC vlc; |
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/sh | |
set -e | |
git config -f .gitmodules --get-regexp '^submodule\..*\.path$' | | |
while read path_key path | |
do | |
url_key=$(echo $path_key | sed 's/\.path/.url/') | |
url=$(git config -f .gitmodules --get "$url_key") | |
git submodule add $url $path |
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
// Copyright (c) XRTK. All rights reserved. | |
// Licensed under the MIT License. See LICENSE in the project root for license information. | |
using UnityEditor; | |
using XRTK.Editor.Profiles; | |
using XRTK.Examples.Demos.CustomExtensionServices; | |
namespace XRTK | |
{ | |
/// <summary> |
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
// Copyright (c) XRTK. All rights reserved. | |
// Licensed under the MIT License. See LICENSE in the project root for license information. | |
using XRTK.Definitions; | |
using UnityEngine; | |
namespace XRTK.Examples.Demos.CustomExtensionServices | |
{ | |
/// <summary> | |
/// This is the custom configuration profile for your custom extension service. |
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
// Copyright (c) XRTK. All rights reserved. | |
// Licensed under the MIT License. See LICENSE in the project root for license information. | |
using System; | |
using UnityEngine; | |
using XRTK.Extensions; | |
using XRTK.Services; | |
namespace XRTK.Examples.Demos.CustomExtensionServices | |
{ |
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
// Copyright (c) XRTK. All rights reserved. | |
// Licensed under the MIT License. See LICENSE in the project root for license information. | |
using System; | |
using XRTK.Interfaces; | |
namespace XRTK.Examples.Demos.CustomExtensionServices | |
{ | |
/// <summary> | |
/// The custom interface for your extension service. |
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
public class InputTest : BaseInputHandler, IMixedRealitySpatialInputHandler | |
{ | |
[SerializeField] | |
private MixedRealityInputAction myAction = MixedRealityInputAction.None; // <-- Set in the inspector. | |
public void OnInputUp(InputEventData eventData) | |
{ | |
if (eventData.MixedRealityInputAction == myAction) | |
{ | |
Debug.Log($"OnInputUp {eventData.InputSource.SourceName} | {eventData.MixedRealityInputAction.Description}"); |
NewerOlder