Skip to content

Instantly share code, notes, and snippets.

View Frixs's full-sized avatar
🇨🇿

Tomáš Frixs Frixs

🇨🇿
View GitHub Profile
@Frixs
Frixs / ItemHierarchyCreatorTool.html
Created September 29, 2025 10:16
A tool for exploring nodes and their dependencies. Perfect for mapping out game item trees and uncovering complex relationships with ease in a diagram.
<!-- 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>
@Frixs
Frixs / FindsCheckr.cs
Last active December 17, 2022 21:32
Utility: findscheckr | Find strings and check against resources (.NET 6.0)
using System.Text.RegularExpressions;
namespace findscheckr;
internal class FindsCheckr
{
private static void Main(string[] args)
{
if (args.Length == 0)
{
@Frixs
Frixs / CameraBoundsWithRangeTileProvider.cs
Created October 16, 2022 16:17
Mapbox Unity SDK (v2.1.1) issue solving
// @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;