awesome-repositories.com
Blog
MCP
awesome-repositories.com

Descubre los mejores repositorios open-source con nuestra búsqueda potenciada por IA.

ExplorarBúsquedas curadasAlternativas open-sourceSoftware autohospedableBlogMapa del sitio
ProyectoServidor MCPAcerca deCómo clasificamosPrensa
Aviso legalPrivacidadTérminos
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

6 repositorios

Awesome GitHub RepositoriesSimulation Tick Callbacks

Hooks for executing custom logic during internal physics simulation steps.

Distinct from Physics Engines: Distinct from general physics engines: focuses on the specific callback mechanism for simulation ticks.

Explore 6 awesome GitHub repositories matching game development · Simulation Tick Callbacks. Refine with filters or upvote what's useful.

Awesome Simulation Tick Callbacks GitHub Repositories

Encuentra los mejores repositorios con IA.Buscaremos los repositorios que mejor coincidan usando IA.
  • libgdx/libgdxAvatar de libgdx

    libgdx/libgdx

    24,816Ver en GitHub↗

    LibGDX is a Java-based framework designed for cross-platform game development, enabling the creation and deployment of 2D and 3D games across desktop, mobile, and web environments from a single codebase. It functions as a comprehensive library that abstracts hardware-accelerated graphics, audio, input, and file system access, providing a unified interface for developers to manage game logic and application lifecycles. The framework distinguishes itself through a high-performance architecture that prioritizes efficiency and native interoperability. It utilizes a batch-oriented graphics pipelin

    Triggers custom logic during internal simulation steps by attaching listeners to the dynamics world.

    Java2d3dandroid
    Ver en GitHub↗24,816
  • carla-simulator/carlaAvatar de carla-simulator

    carla-simulator/carla

    14,072Ver en GitHub↗

    CARLA is an autonomous driving simulator and research environment designed for developing and validating self-driving software. It functions as an urban traffic simulator that generates realistic vehicle and pedestrian behavior and as a synthetic sensor data generator producing LiDAR, Radar, and camera data. The platform distinguishes itself through its deep integration with robotics frameworks, specifically providing native connectivity to ROS2 nodes for robotic control and data processing. It supports the training of driving models via imitation and reinforcement learning within a controlle

    Implements a clocking mechanism that pauses the simulation server until a client signal triggers the next physics step.

    C++
    Ver en GitHub↗14,072
  • stdlib-js/stdlibAvatar de stdlib-js

    stdlib-js/stdlib

    5,735Ver en GitHub↗

    Provides a utility to schedule callbacks on the next tick of the event loop.

    JavaScriptjavascriptjslibrary
    Ver en GitHub↗5,735
  • google-deepmind/mujoco_menagerieAvatar de google-deepmind

    google-deepmind/mujoco_menagerie

    3,055Ver en GitHub↗

    mujoco_menagerie is a curated library of physical robot specifications and XML model definitions designed for standardized dynamics and contact simulation. It provides a collection of high-quality robot model files for humanoids, quadrupeds, and manipulators, alongside detailed kinematic and inertial parameters used to reproduce real-world robot behavior in virtual environments. The project serves as a repository of robotics simulation assets and MJCF model definitions optimized for accuracy. It includes standardized model libraries specifically for bipedal, quadrupedal, and humanoid hardware

    Injects custom logic into the physics engine via global callbacks to modify behavior or define forces.

    Pythonmujocorobotics
    Ver en GitHub↗3,055
  • reactphp/event-loopAvatar de reactphp

    reactphp/event-loop

    1,329Ver en GitHub↗

    An asynchronous I/O and reactor event loop library for PHP, this project provides core primitives for coordinating non-blocking operations, managing system resources, and scheduling background tasks. The runtime executes concurrent operations by continuously running tick-based loop iterations that process pending timers, network streams, deferred callbacks, and system signals through efficient system-level polling mechanisms. The library coordinates event-driven execution using asynchronous timers for one-off or periodic tasks, next-tick deferred execution for breaking down workloads, and str

    Coordinates asynchronous tasks through continuous tick-based loop iterations processing timers and streams.

    PHPevent-loopphpreactphp
    Ver en GitHub↗1,329
  • ashblue/fluid-behavior-treeAvatar de ashblue

    ashblue/fluid-behavior-tree

    1,166Ver en GitHub↗

    Fluid Behavior Tree es un framework impulsado por código para Unity diseñado para gestionar comportamientos autónomos de personajes a través de estructuras de toma de decisiones jerárquicas. Funciona como un motor de lógica de IA de juegos que procesa comportamientos complejos de entidades atravesando grafos dirigidos de nodos que devuelven señales de éxito, fallo o estado de ejecución durante cada actualización de fotograma. La biblioteca se distingue por un patrón de constructor fluido que permite a los desarrolladores definir estructuras de árbol anidadas, secuencias y flujos de ejecución paralelos completamente a través de métodos de código encadenables. Este enfoque enfatiza la modularidad, permitiendo la creación de módulos de comportamiento reutilizables que pueden componerse en sistemas de IA más grandes y sofisticados. El framework incluye un conjunto integral de herramientas para gestionar ciclos de vida de tareas y extender la funcionalidad a través de acciones, condiciones y decoradores personalizados. Para apoyar el desarrollo, proporciona herramientas de visualización en tiempo real dentro del editor de Unity, permitiendo el monitoreo de jerarquías de árboles activas y la depuración del flujo de lógica durante el juego.

    Processes the tree structure during each frame update to evaluate conditions and trigger actions for autonomous game entities.

    C#aibehavior-treebuilder-pattern
    Ver en GitHub↗1,166
  1. Home
  2. Game Development
  3. Physics Engines
  4. Simulation Tick Callbacks

Explorar subetiquetas

  • Event Loop Tick Scheduling1 sub-etiquetaMechanisms for deferring callback execution to the next iteration of the event loop. **Distinct from Simulation Tick Callbacks:** Distinct from Simulation Tick Callbacks: focuses on general event-loop scheduling in JavaScript runtimes, not game physics simulation ticks.
  • Synchronous Server TicksClocking mechanisms that pause a simulation server until a client signal triggers the next physics step. **Distinct from Simulation Tick Callbacks:** Distinct from generic callbacks; specifically implements a synchronous client-server lockstep for reproducible physics.