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

Highlights

  • Pro

Block or report thygrrr

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# 427 18

  2. outfox/2dog outfox/2dog Public

    🦴 2dog is Godot in .NET

    C# 105 6

  3. 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;
  4. outfox/newtype outfox/newtype Public

    Distinct Type Aliases for C#

    C# 11 1

  5. 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:
  6. 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