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
<!-- Created by Tomáš Frixs proudly with the help of Claude --> | |
<!-- Tool Version: 1.0 --> | |
<!-- Data Set Version: 1.0 (V Rising 1.1) --> | |
<!-- Instruction: Download the file and open it in your preferred web browser. It will run locally. --> | |
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Item Hierarchy Creator Tool</title> | |
<script src="https://unpkg.com/gojs/release/go.js"></script> |
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.Text.RegularExpressions; | |
namespace findscheckr; | |
internal class FindsCheckr | |
{ | |
private static void Main(string[] args) | |
{ | |
if (args.Length == 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
// @author Tomáš Frixs | |
using Mapbox.Map; | |
using Mapbox.Unity.Map; | |
using Mapbox.Unity.Map.TileProviders; | |
using Mapbox.Unity.Utilities; | |
using Mapbox.Utils; | |
using System; | |
using System.Collections.Generic; | |
using UnityEngine; |