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
| 2020-04-17 17:13:34,502 | ERROR | FileEditorManagerImpl | @NotNull method org/intellij/plugins/markdown/settings/MarkdownPreviewSettings.getSplitEditorLayout must not return null | |
| java.lang.IllegalStateException: @NotNull method org/intellij/plugins/markdown/settings/MarkdownPreviewSettings.getSplitEditorLayout must not return null | |
| at org.intellij.plugins.markdown.settings.MarkdownPreviewSettings.$$$reportNull$$$0(MarkdownPreviewSettings.java) | |
| at org.intellij.plugins.markdown.settings.MarkdownPreviewSettings.getSplitEditorLayout(MarkdownPreviewSettings.java:52) | |
| at org.intellij.plugins.markdown.ui.split.SplitFileEditor.<init>(SplitFileEditor.java:48) | |
| at org.intellij.plugins.markdown.ui.preview.MarkdownSplitEditor.<init>(MarkdownSplitEditor.java:19) | |
| at org.intellij.plugins.markdown.ui.preview.MarkdownSplitEditorProvider.createSplitEditor(MarkdownSplitEditorProvider.java:19) | |
| at org.intellij.plugins.markdown.ui.split.SplitTextEditorProvider$1.build(SplitTextEditorProvider.java:71) | |
| at com.intellij.o |
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
| # for post article | |
| $devToApiKey = 'your-dev.to-api-key' | |
| # for image upload | |
| $UserName = 'your-dev.to-username' | |
| $Password = 'your-dev.to-password' | |
| $seleniumHome = 'your-selenium-path' | |
| $blackListTags = @() | |
| # nuget install Selenium.WebDriver.ChromeDriver | |
| # nuget install Selenium.WebDriver |
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.Collections; | |
| using UnityEngine; | |
| using UnityEngine.XR; | |
| using UnityEngine.UI; | |
| using UnityEngine.XR.Interaction.Toolkit; | |
| [RequireComponent(typeof(CharacterController))] | |
| public class VRRigidbodyFirstPersonController : LocomotionProvider | |
| { |
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
| "dependencies": { | |
| "com.cysharp.unitask": "https://github.com/twksos/UniTask.git#upm-1.2.0", | |
| "com.neuecc.unirx": "https://github.com/starikcetin/UniRx.git#7.1.0", | |
| "com.svermeulen.extenject": "https://github.com/starikcetin/Extenject.git#9.1.0" | |
| } |
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
| // Requirements | |
| // - XR Interaction Toolkit | |
| using UnityEngine; | |
| using UnityEngine.Events; | |
| using UnityEngine.XR; | |
| public class XRControllerAction : MonoBehaviour | |
| { | |
| [SerializeField] private XRNode controller = XRNode.RightHand; | |
| [SerializeField] private InputHelpers.Button button = InputHelpers.Button.PrimaryButton; |
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
| "GuiFont! HackGen\ Console:h14 | |
| GuiFont! JetBrains Mono:h14 |
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
| @echo off | |
| set PACKAGE_NAME=com.oculus.vrshell.home | |
| set ADB=adb.exe | |
| for /f "usebackq skip=1 tokens=*" %%a in (`wmic process where "name='adb.exe'" get executablepath ^| findstr /r /v "^$"`) do ( | |
| set ADB=%%a | |
| ) | |
| setlocal ENABLEDELAYEDEXPANSION | |
| @rem set option=-s Unity:* |
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) 2019 KOGA Mitsuhiro | |
| This software is released under the MIT License. | |
| http://opensource.org/licenses/mit-license.php | |
| ************************************************************************************/ | |
| using System.Collections.Generic; | |
| using UnityEngine; |
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
| @echo off | |
| rem Copyright (c) 2019 KOGA Mitsuhiro | |
| rem | |
| rem This software is released under the MIT License. | |
| rem http://opensource.org/licenses/mit-license.php | |
| set ADB=adb.exe | |
| setlocal ENABLEDELAYEDEXPANSION |
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) 2019 KOGA Mitsuhiro | |
| * | |
| * This software is released under the MIT License. | |
| * http://opensource.org/licenses/mit-license.php | |
| */ | |
| using System; | |
| using System.Runtime.InteropServices; |