Skip to content
View thygrrr's full-sized avatar
infinite loop
infinite loop

Highlights

  • Pro

Block or report thygrrr

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. Markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. outfox/fennecs outfox/fennecs Public

    ... the little C# ECS that loves you back!

    C# 399 16

  2. outfox/2dog outfox/2dog Public

    .NET front-end for #GodotEngine, using libgodot

    Python 1

  3. Awaiting multiple Signals in Godot 4.4 Awaiting multiple Signals in Godot 4.4
    1
    # SPDX-License-Identifier: Unlicense
    2
    extends Control
    3
    
                  
    4
    # Awaits until any one of the provided array of signals was emitted, and returns that signal
    5
    func any(signals : Array[Signal]) -> Signal:
  4. Godot Zoom and Pan, smooth & cursor-... Godot Zoom and Pan, smooth & cursor-centric Camera2D motion
    1
    # SPDX-License-Identifier: Unlicense or CC0
    2
    extends Node2D
    3
    
                  
    4
    # Smooth panning and precise zooming for Camera2D
    5
    # Usage: This script may be placed on a child node
  5. Unity Loggers, zero-boilerplate drop... Unity Loggers, zero-boilerplate drop-in replacement logger in 25 lines of code
    1
    //SPDX-License-Identifier: Unlicense OR CC0-1.0+
    2
    using System;
    3
    using System.Collections.Generic;
    4
    using UnityEngine;
    5
    using Object = UnityEngine.Object;