Video yükleniyor...

Video Yüklenemedi

Ana Sayfaya Dön

We’ve built a brand-new VTS plugin for Minecraft! 1. Drive VTS physics engine scheduling based on the player character's vector acceleration in-game 2.Real-time texture replacement and eating animations 3.In-game equipment mapping 4.Status particle effects 5.In-game GUI display 6.Status bar UI rendering 7.Damage impact feedback Under the hood, a Fabric...

147,059 görüntüleme • 2 gün önce •via X (Twitter)

0 Yorum

Yorum bulunmuyor

Orijinal gönderinin yorumları burada görünecek

Benzer Videolar

Why the character movement in my custom game engine felt janky and how I fixed it. In a game engine, most often, a character moves using the physics engine. Meaning, the player is not just a coordinate in space but a physical body. It has velocity, it handles collisions, and it interacts with the world. Now, as you might know, physics engines need stability. If you run them at variable framerates, things start breaking. Objects phase through walls or fly off into space because the math becomes unpredictable. This is why most game engines lock their physics loop to a 60Hz fixed rate. But here’s the problem: If you have a high-end system, you don't want to limit it at 60 FPS. That's a waste of good hardware. Now, that said, if the GPU is rendering at 144 FPS but the player's position (physics driven) only updates 60 times a second, it creates a micro-stutter that ruins the "smooth" feel of the game. A good way to fix this is to treat the character as two separate things: 1. The Physics Body (Invisible part): This is the "real" character. It lives in the 60Hz physics world, it moves the player and handles collisions. 2. The Visual Model and Camera (Visible part): This is what the player actually sees. It doesn't care about collisions, its only job is to look nice and smooth at whatever framerate the GPU is pushing. Once you have this separation, you can use interpolation to keep them in sync. Every time the physics clock ticks, you save the previous position of the invisible body before moving it to the new one. Between those ticks, calculate how far we are between the last physics update and the next one. By using this to drive the visible parts of the game, the stutters disappear. The physics loop stays fixed behind the scenes, while the visuals slide smoothly between the snapshots. Example: - Right after a tick: blend_weight= 0.0 (The visual model stays at the old physics position). - Halfway to the next: blend_weight= 0.5 (The visual model slides to the middle point). - Just before the next: blend_weight= 0.9 (The visual model is almost at the new physics position). Pro-Tip A critical mistake I made initially, and one many devs make, is parenting the camera and visible parts directly to the player body. If you do this, the camera inherits the discrete 60Hz physics movement by default. In that setup, interpolation won't work because the camera is "stuck" to the physics clock. For this fix to work you must decouple the camera and visuals from the body and move them separately. Player movement processing in Detis Engine: - fixed_process: Physics runs at 60Hz. Handles collisions and raw movement. - process: Variable rate. Mainly used for player input caching in the player case. - late_process: Variable rate. Handles interpolated camera movement after physics and everything else is done being processed. - render. Submits the final interpolated transforms to the GPU. The test environment in the video is running on an old 2070-based laptop. Hopefully the video compression won't introduce any stutter... I’m sharing this in hopes it helps a fellow dev. Cheers.

Ioannis Koukourakis

48,636 görüntüleme • 7 ay önce

Robotics has a massive, silent bottleneck. It isn’t just data collection—it’s the brutal 1x speed of the physical world. Genesis AI Genesis AI just unveiled Genesis World 1.0, and they are attempting to turn the notorious Sim2Real gap into a pure compute problem. Evaluating a robotics foundation model across edge cases usually means hundreds of hours of physical lab testing. With Genesis World 1.0, what traditionally takes nearly a week of continuous, real-world operation is being compressed into 30 minutes in simulation. What makes this different from just dropping a robot model into an off-the-shelf game engine? 1️⃣ Nyx Renderer: A custom, real-time path-traced engine rendering noise-free 1080p frames in under 4ms. Game engines use rasterization tricks that confuse AI; Nyx uses physically accurate multi-bounce lighting so the model's "eyes" see exactly what real sensors see. 2️⃣ Quadrants Compiler: A custom Python-to-GPU compiler to run heavily parallelized multi-physics simulations (rigid bodies, fluids, deformables) natively across architectures. 3️⃣ Evaluation First: They aren't rushing to train on synthetic data. They are using this purely for closed-loop evaluation to perfect the physics first, currently claiming an impressive 89% correlation with real-world hardware tests. If the industry can accurately evaluate models in simulation without the physical world bottleneck, humanoid development stops moving at wall-clock time and starts scaling with compute.

Humanoids daily

17,240 görüntüleme • 2 ay önce

Physics-based Motion Retargeting from Sparse Inputs paper page: Avatars are important to create interactive and immersive experiences in virtual worlds. One challenge in animating these characters to mimic a user's motion is that commercial AR/VR products consist only of a headset and controllers, providing very limited sensor data of the user's pose. Another challenge is that an avatar might have a different skeleton structure than a human and the mapping between them is unclear. In this work we address both of these challenges. We introduce a method to retarget motions in real-time from sparse human sensor data to characters of various morphologies. Our method uses reinforcement learning to train a policy to control characters in a physics simulator. We only require human motion capture data for training, without relying on artist-generated animations for each avatar. This allows us to use large motion capture datasets to train general policies that can track unseen users from real and sparse data in real-time. We demonstrate the feasibility of our approach on three characters with different skeleton structure: a dinosaur, a mouse-like creature and a human. We show that the avatar poses often match the user surprisingly well, despite having no sensor information of the lower body available. We discuss and ablate the important components in our framework, specifically the kinematic retargeting step, the imitation, contact and action reward as well as our asymmetric actor-critic observations. We further explore the robustness of our method in a variety of settings including unbalancing, dancing and sports motions.

AK

106,527 görüntüleme • 3 yıl önce

this is what 12 gigs of VRAM built in 2026. a 9 billion parameter model running on a 5 year old RTX 3060 wrote a full space shooter from a single prompt. blank screen on first try. i came back with a bug list and the same model on the same card fixed every issue across 11 files without touching a single line myself. enemies still looked wrong so i pushed another iteration and now the game has pixel art octopi, particle effects, screen shake, projectile physics and a combo system. all running locally on a card that was designed to play fortnite. three iterations. zero cloud. zero API calls. every token generated on hardware sitting under my desk. the model reads its own code, finds what's broken, patches it, validates syntax and restarts the server. i just describe what's wrong and it handles the rest. people are paying monthly subscriptions to type into a browser tab and wait for a server farm to respond. meanwhile a GPU you can find used on ebay is running a full autonomous hermes agent framework with 31 tools, 128K context window and thinking mode generating at 29 tokens per second nonstop. the game still needs work. level upgrades don't trigger and boss fights need tuning. but the fact that i'm iterating on gameplay balance instead of debugging whether the code runs at all tells you where this is headed. every iteration the game gets better on the same hardware. same 12 gigs. same 9 billion parameters. same RTX 3060 from 5 years ago your GPU is not a gaming card anymore. it's a local AI lab that never sends your data anywhere.

Sudo su

170,737 görüntüleme • 5 ay önce

Thrilled to announce Kingnet AI V2 is now officially live ! We have officially deployed on the BNB Chain first ! Whether you're an enthusiast or a professional game developer, come and try it out now: Each generated asset costs approximately $3 and supports export in professional game-editing formats. We will soon support exporting assets in NFT on-chain formats, empowering Web3 users and partners with seamless integration. Jump down more rabbit holes next.👇 📔 Product Introduction: By conversing naturally with agent Joi, users can achieve a complete automated game development cycle - from requirement proposal to finished product delivery. Users simply need to describe their game concepts and design requirements in natural language, and Joi will automatically utilize built-in generator including: • Animation Generator: AI-driven motion generation with auto-rigging technology for instant character animation • Map Generator: Procedural map generation with built-in logic validation for consistent world-building • Numerical Generator: Automated game economy tuning for fair yet challenging gameplay systems • Editable Code Generator: Generates clean, maintainable game logic code with multi-platform/multi-language support • Interface Generator: Intelligent layout engine that optimizes user experience and interaction flow Joi intelligently generates all necessary game components, performs multi-dimensional feasibility checks, and ultimately completes game synthesis, packaging and deployment. Users can directly click to try the game on the chat interface, or download the complete editable code package to achieve rapid iteration and secondary development. 🎯 Core Architecture: 1/ Natural Language Understanding & Multimodal Intent Parsing: Utilizing advanced deep learning NLP models (e.g., Transformer-based language understanding models), Joi precisely interprets user natural language inputs and extracts core game design intents and parameters. Through semantic segmentation and entity recognition, complex requirements are decomposed into specific tasks for animation, map, numerical systems, UI, and code modules. 2/ Modular Editor System & API Integration: Joi employs a unified API framework to enable seamless collaboration between editor modules, ensuring high compatibility in data formats and workflows. 3/ Intelligent Validation & Quality Assurance: The system incorporates multi-dimensional verification mechanisms including animation continuity checks, map pathfinding and physical logic validation, game balance analysis, UI interaction consistency verification, and static/dynamic code security testing. Automated testing and feedback loops ensure outputs meet high-standard game design specifications. 4/ Automatic Synthesis, Packaging & Instant Deployment: Verified resources are automatically integrated to complete game compilation, packaging and deployment. Supports one-click generation of playable online links and downloadable complete code packages for immediate testing or deep customization/iterative development. 5/ Interactive Chat Interface & Seamless UX: The entire workflow is completed within the chat interface, significantly reducing traditional game development's communication and operational barriers. Users accomplish complex game design and development through conversation while receiving real-time feedback and adjustment suggestions, democratizing game creation. 6/ Industry-Disrupting Value: Transforms traditional manual development into AI-driven automated pipelines.

Kingnet AI

45,966 görüntüleme • 1 yıl önce

🔥 $KATA FAM! THIS IS HUGE!🔥🥳 The moment we’ve all been waiting for is finally here… Katana Inu Battle Royale is about to go LIVE. 🚀 PLAYABLE FULL GAME - 20th January! Our Battle Royale mode becomes playable for the first time. That is what the developers said. So hopefully, no delays! 😍 This will be a live test phase, and right after that, we’ll bring the game online for everyone to download and play right away! This isn’t just an update 👉 This is a massive milestone for $KATA ⚔️ WHAT HAPPENS AFTER THE TEST? Once the Battle Royale test is complete, we move fast. Now? 👉 WE’RE ALMOST READY.🔥 4 years of building, grinding, and perfecting 😍 We’ll start integrating our already developed Web3 infrastructure directly into the game, including: 🧠 Web3 Multichain Wallet in our Game 🎮 Player Progression UI UX 🖼️ NFT Purchasing in our Game $KATA burn activation, news coming soon! 🔥 And much more! 🚀 Most of this is already built... now it’s about clean structure, smooth integration, and solid testing! After that… 💰 PLAY-TO-EARN GOES LIVE FOR TESTING - TOGETHER WITH THE COMMUNITY 💎 $KATA TOKEN - WE’RE COOKING 👀🔥 With the game finally ready, unlocks real power: - Web3 gaming launchers - Gaming guilds onboarding - Play-to-Earn & Burn activation - In-game NFT skins & weapons - Play live with our Partners/collabs & more! Let's make $KATA great again! 🗺️ ROADMAP & MILESTONES (STRAIGHT TO THE POINT) The game will be ready now! We will just add more polishing to check every corner! Goal: Make the game GOOD and READY for everyone!😍 Here’s the current estimated roadmap we’re aiming to a better place that deserves! 🔥 JANUARY – FULL POWER MODE - General polishing across the entire game - Activate some new videos - Game/Server testing with all Modes - Server stress tests - Preparing for public access - Steam wishlist push & Epic Games - Improving animations, VFX, and sound FX - Integrating player progression into UI / UX - Pushing $KATA into the spotlight! 🔥 ⚡ FEBRUARY – SCALE & POLISH🚀 - Streamers start testing & mass gameplay sessions - Further polish across gameplay and visuals - Final player progression UI/UX integration - AI bots are fully ready inside the game - Bring the $KATA token more visibility into the Web3 community and Game Launchers with p2e. - Launch our first in-game NFT mint, fully integrated and playable directly inside the game ✍️Deliver on all our promises to holders! Allowing NFTs, including 3D characters and weapons, to finally come to life and be used in actual gameplay Focus on: - Visibility on $KATA & our Game - Real gameplay feedback - Steam wishlists & Getting Players for web3 🚀 MARCH – BOOST GAME READY - Final polishing complete - Public-ready version - Roll out $KATA utility and bring it to a much wider audience - Preparing for Steam / Epic Games launch - Streamers & communities fully activated🚀 Please wishlist Katana Inu on Steam: 📣 MARKETING & PLAYER GROWTH - Collaborations with streamers - $KATA into the focus for more holders - Coverage across multiple social platforms - Playing on different web3 game launchers to bring more players into Katana Inu! What comes next? After mid-March, we’ll share new updates and unveil the plan for the next 3 months! The reason for the delay was simple: Battle Royale is complex - and we refused to rush it. 🔥 DROP YOUR HYPE IN THE COMMENTS, FAM This is just the beginning of Katana Inu’s real journey. We’re giving our best for you, $KATA Fam! ❤️ LET’S BUILD. LET’S PLAY. LET’S WIN. ⚔️🐺🔥

Katana Inu

12,768 görüntüleme • 7 ay önce

At the end of the day, as I discussed with Jordan Peterson, there are just two games to be played, one real, one Woke. The real game is called civilization. The false game is called power. A long post/🧵: The real divide between Woke and not Woke is in power. The Woke game is the power game, and it is a parasite on the real game, which is civilization. Here's roughly how Jordan described the foundation of this idea. There are various rules, norms, etc., in the game society ultimately plays, and these create a hierarchy that is based upon competence, mostly organically, obviously imperfectly. If the rules of the game are good enough, the imperfections (natural corruptions) are minor and society thrives. If they are not, you'll have problems. This is the real game of building society, and it ultimately has to favor competence. This game must be called "civilization" because that's not just its goal but it is also what it does. It civilizes us beyond our base instincts and impulses so we can work together productively in a healthy manner that generates prosperity. As Jordan put it, this game is also a reservoir of value, and reservoirs of value create parasites. What are these civilizational parasites? They’re parallel games organized by and around malignant psychopathological modes like Dark Tetrad traits, psychopathy, and Cluster-B disorders: histrionic, borderline, antisocial, and narcissistic. These malignant pathologies render people incompetent except at manipulation, so they cannot rise far in a healthy civilizational hierarchy. What do they do, then, to gain power and status in life in a game they cannot actually play? They define a parasitic parallel game and rope people into playing it. It is parasitic in that it draws off the real game (civilization) and mimics its form so that the hosts (people in society) are less likely to realize it’s there, but it doesn’t build or create of its own. It siphons and tears down. What drives this game is failing to see what makes the civilizational game and the hierarchy it produces legitimate in the first place. This is characteristic of the psychopathologies at its heart. The narcissist imagines the world should be serving himself at the top, but it isn’t. The problem can’t be himself, so it must be that the game is illegitimate. Otherwise, he’d be at the top, but he isn’t. Therefore, the game is corrupt. His histrionic nature makes him a victim of the real game, preying upon emotions like empathy and righteous indignation to recruit followers. Because of his Dark Tetrad alignment, his game is not only illegitimate but toxic. It’s inherently sadistic, cruel to its recruits in the way typical of all cults—alternating punishment and leniency or even love-bombing. It’s dishonest. It’s psychologically broken from reality. It’s also a Machiavellian game, which means it has no interest in moral or ethical behavior but only in power. Thus, this rival game to the game of civilization is the game of power. The parasitic game—that is, the power game—is based on a fundamental failure to understand the legitimacy of the civilizational game or the approximately legitimate hierarchy it produces. This is a result of its narcissism, mostly. The game cannot be legitimate because the psychopath isn’t on top of it, where he sees himself constantly as a projection from his frail ego. It sees power in the real hierarchy, though, which it can perceive and understand, and for which it blames most of its troubles. What this means is that the (Woke) power game develops a critical theory of the existing legitimate civilization game. That’s why Woke means “using critical theory (and activism).” A critical theory exists not to articulate a vision—at least not beyond a Utopia after the cult power game holds power to enforce its power game long enough—but to “criticize those aspects of the existing society we wish to change,” as Max Horkheimer, creator of the Critical Theory, put it. The critical theory of the power game exists to recruit by delegitimizing the civilization game in the minds of some of its players, usually ones who aren’t succeeding as well. It picks at “contradictions,” failures, and imperfections while casting the whole civilization game as corrupt and unjust. It offers itself as the only alternative to civilization game while pulling at the threads of the civilization game that allow people to believe in it. It all proceeds from the Woke failure to understand the legitimacy of the hierarchy of the civilization game as it proceeds from its set of rules. Misunderstanding legitimacy leads it to conclude that all hierarchies are actually based in power, and all power is fundamentally arbitrary. That is, they do not believe all power is illegitimate. They believe power is the only legitimate thing in any hierarchy, but they also believe that power is located in persons like themselves through their narcissism and projection. Think of Voldemort as an icon of this mode of thinking: “there is no good or evil, only power and those too weak to seek it.” Of course, that quintessential Dark Tetrad perspective is what ensures the psychopathological power game will be rigged to make sure the psychopaths are attracted to it and rise to its top. This belief is what we call Woke. The Woke game is the power game, and it is a parasitic competitor to the civilization game. There is no overlap between these two games. To adopt the power game is to abandon the civilization game entirely and, in fact, to become its enemy. But James, you might ask, isn’t there power in civilization? Yes, there is, and necessarily, but it isn’t what defines the civilization game. It’s a byproduct of the game, not the game itself. The civilization game is fundamentally the building out of an organic and dynamic hierarchy based on a set of rules, or what some people call “muh principles,” that will succeed or fail for that civilization in direct proportion to three things. 1) How aligned with the truth are the rules of the civilization game? 2) How aligned with justice are the rules of the civilization game? 3) How willing are the participants of the civilization game to defend their principles and their game, including against socio-parasitical perversion? The more aligned with truth and justice a civilization game is, the more successful it will be, and the more legitimate its hierarchy. The power that results as a byproduct is extremely legitimate in a highly aligned civilization where people haven’t forgotten their charge to defend the game itself, which is what we call responsibility. A civilization game strongly aligned with truth and justice filled with a preponderance of responsible people will produce a thriving, prosperous society. It only works this way every time. Not everyone is responsible, though. Some are also incompetent because of various pathologies (not talking about for other reasons). Those pathological players may, under certain circumstances, create a parasitic side game with themselves on top through a variety of strategies that mimic the values and principles of the real game while distorting them into power plays because their game is power, as discussed above. They will recruit into that game primarily from those who are resentful of the real game for any variety of reasons, and getting recruited into the power game from the civilization game is called “going Woke.”

James Lindsay, anti-Communist

154,373 görüntüleme • 1 yıl önce

Motion graphics used to take me an hour per scene (or more) Now I'm creating them in 3-5 minutes — without After Effects, without Premiere, without writing a single line of code. I'm a former LA filmmaker (still PGA). My entire video stack is now 3 tools: Claude Code + HyperFrames (from HeyGen) + Descript Here's how the workflow runs: 1. Drop my brand style guide into a folder (colors, fonts, components Claude reuses forever) 2. Paste a line from my Descript transcript into Claude Code: "Create a scene for this part of the video" 3. Claude Code reads my brand, generates the HyperFrames scene, renders it to MP4 4. Drag the MP4 into Descript, drop it on the matching line of the transcript 5. Done. 3-5 minutes per scene. The unlock is the brand style guide. Once Claude has your colors, fonts, and reusable components, every scene inherits your look automatically. Bonus — you can take a Claude Design export (.zip), hand it to Claude Code, and it'll convert the HTML into a HyperFrames video you can render and edit. I built a GitHub repo with all the skills pre-loaded. Non-developers can clone it, open Claude Code, and be rendering scenes in under 10 minutes. Full walkthrough (20 min video) below Repo (skills + brand template + music-from-transcript plugin): Bookmark this if you make videos. The brand-style-guide pattern alone will save you hours every week. If you're a creator or operator using AI for content — share this with someone who's still living in After Effects.

JJ Englert

103,435 görüntüleme • 3 ay önce