▸case-03 We are building a massive crowd simulation of 50,000 AI agents in Unreal Engine 5. A team member proposes using classic AActor and UCharacterMovementComponent classes for each crowd agent. What framework within Unreal Engine should be used for lightweight, data-oriented mass entity management? | pass→pass | 8,486 | 12,668 | +49% | 1 | 1 | 0% | 1,579 | 2,017 | +28% | 0 | 0 | — |
▸case-01 We are migrating a bullet hell projectile system in Unity to Entities (DOTS). Developers suggested creating C# managed classes for bullet components so that reference types can easily store target references. How should bullet component data be defined in Unity ECS? | pass→pass | 12,349 | 9,127 | -26% | 1 | 1 | 0% | 2,288 | 1,781 | -22% | 0 | 0 | — |
▸case-02 In a performance-critical Unity DOTS project, a developer created an ECS system inheriting from SystemBase with class-based managed allocation overhead. How should zero-allocation ECS systems be structured in modern Unity Entities? | pass→pass | 13,877 | 15,717 | +13% | 1 | 1 | 0% | 2,609 | 2,790 | +7% | 0 | 0 | — |
▸case-04 A physics programmer in Unity is updating object positions inside Update() using Time.deltaTime to calculate force application on Rigidbodies. When running at varying frame rates, physics interactions become jittery and non-deterministic. Where and how should physics forces be applied? | pass→pass | 12,266 | 11,505 | -6% | 1 | 1 | 0% | 2,318 | 2,403 | +4% | 0 | 0 | — |
▸case-05 Fast-moving sniper projectiles in a 3D shooter are passing directly through thin wall colliders without triggering collision events. Developers want to fix this by increasing the physics iteration count globally. What body collision setting should be configured on high-speed rigidbodies instead? | pass→pass | 4,285 | 8,212 | +92% | 1 | 1 | 0% | 691 | 1,337 | +93% | 0 | 0 | — |
▸case-06 In a fast-paced peer-to-peer or client-server multiplayer FPS, players experience noticeable movement latency when waiting for the server to acknowledge input commands before moving locally. How should local player movement be handled on the client? | pass→pass | 12,696 | 14,344 | +13% | 1 | 1 | 0% | 2,211 | 2,876 | +30% | 0 | 0 | — |
▸case-07 Remote player entities in a networked multiplayer game appear choppy and stutter across the screen even though position updates arrive at 20 Hz from the server. A developer proposes increasing the server snapshot tick rate to 144 Hz. What client-side technique should be implemented to smooth remote movement at low tick rates? | pass→pass | 6,500 | 10,559 | +62% | 1 | 1 | 0% | 1,131 | 2,182 | +93% | 0 | 0 | — |
▸case-08 A graphics developer is writing an HLSL surface shader in Unity for a terrain material that computes expensive distance-based atmospheric fog and lighting attenuation per pixel in the fragment shader. What optimization should be applied to vertex/fragment work distribution? | pass→pass | 10,442 | 10,891 | +4% | 1 | 1 | 0% | 1,775 | 2,003 | +13% | 0 | 0 | — |
▸case-09 In a custom HLSL shader for character customization, the shader uses dynamic if/else conditional statements inside the pixel shader based on uniform float flags to switch texture channels. Frame times spike heavily on low-end GPUs. How should shader branching be handled for material variants? | pass→pass | 15,256 | 19,985 | +31% | 1 | 1 | 0% | 2,671 | 3,214 | +20% | 0 | 0 | — |
▸case-10 A mobile game scene in Unity has over 3,000 draw calls due to hundreds of unique static environment objects using separate mesh instances with identical materials. The CPU bound main thread is stalling render submission. How should static geometry render calls be reduced? | fail→pass | 12,125 | 13,024 | +7% | 1 | 1 | 0% | 2,139 | 2,583 | +21% | 0 | 0 | — |
▸case-11 A dense forest scene in Unreal Engine is experiencing heavy GPU fill-rate bottlenecks. Profiling shows high pixel shading pass overhead due to hidden geometry behind large mountains being rendered. What rendering techniques solve this fill-rate overdraw issue? | fail→fail | 18,020 | 16,599 | -8% | 1 | 1 | 0% | 2,438 | 2,831 | +16% | 0 | 0 | — |
▸case-12 While iterating over an EntityQuery in a Unity C# Job System, a developer tries to call EntityManager.CreateEntity() and EntityManager.DestroyEntity() directly inside IJobEntity.Execute(). This throws a thread safety exception. How should structural changes be performed during parallel job execution? | pass→pass | 10,600 | 11,942 | +13% | 1 | 1 | 0% | 2,088 | 2,189 | +5% | 0 | 0 | — |
▸case-13 An Unreal Engine C++ developer creates a custom C++ class AWeaponSpawner that holds raw pointers to UStaticMeshComponent objects without any Unreal macros. Occasionally, the game crashes unexpectedly when referencing these pointers after level transitions. What macro is required to prevent Unreal Garbage Collector from sweeping active UObject references? | pass→pass | 3,955 | 4,919 | +24% | 1 | 1 | 0% | 750 | 891 | +19% | 0 | 0 | — |
▸case-19 In a vehicle simulation built in Unreal Engine, complex physics constraint joints break or wobble wildly whenever frame rate drops below 30 FPS. How can physics simulation precision be maintained during low frame rates without altering delta time logic? | pass→pass | 20,485 | 14,506 | -29% | 1 | 1 | 0% | 2,938 | 2,702 | -8% | 0 | 0 | — |
▸case-14 A custom HLSL shader computes surface lighting using raw RGB color values sampled directly from a normal map texture. The lighting looks distorted and inverted on non-flat surfaces. How must normal map samples be unpacked before performing dot products with light vectors? | pass→pass | 9,724 | 9,145 | -6% | 1 | 1 | 0% | 1,927 | 1,918 | -0% | 0 | 0 | — |
▸case-15 In a weapon system simulation, hitscan bullets fired from high-velocity weapons occasionally miss thin targets at long range because raycasts are performed only at the current frame transform position. What pattern ensures raycasts reliably intersect targets between discrete animation frames? | pass→pass | 10,713 | 13,131 | +23% | 1 | 1 | 0% | 1,949 | 2,194 | +13% | 0 | 0 | — |
▸case-16 A large open-world game scene suffers severe vertex processing bottlenecks because 3D models with 100,000 polygons each are rendered at maximum detail regardless of distance from the camera. What optimization pattern reduces geometry density based on camera distance? | fail→fail | 4,420 | 7,220 | +63% | 1 | 1 | 0% | 824 | 1,264 | +53% | 0 | 0 | — |
▸case-17 A multiplayer action game allows clients to decrease player health locally and send the modified health value directly to the server via RPC. Exploitation tools are allowing cheaters to send instant kill messages. How should player health and damage processing be architected? | pass→pass | 50,322 | 20,230 | -60% | 1 | 1 | 0% | 2,638 | 3,293 | +25% | 0 | 0 | — |
▸case-18 A developer wants to optimize rendering throughput using Unity Scriptable Render Pipeline SRP Batcher, but scene objects are failing to batch together. What requirements must materials and shaders satisfy for SRP Batcher compatibility? | fail→pass | 15,408 | 11,752 | -24% | 1 | 1 | 0% | 2,249 | 2,328 | +4% | 0 | 0 | — |
▸case-20 I am designing the branching conversation tree for an RPG quest line. I need help writing 5 dramatic dialogue options and determining player alignment point awards for a choice where the hero decides whether to spare a captured outlaw boss. Please provide the dialogue tree script with morality scores. | pass→pass | 15,858 | 16,768 | +6% | 1 | 1 | 0% | 2,580 | 3,267 | +27% | 0 | 0 | — |
▸case-21 We need Foley sound effect design guidelines for footstep audio assets on stone, gravel, and wood surfaces. What microphone techniques, equalizer frequencies, and dynamic range compression settings produce crisp sound effects for game audio imports? | pass→pass | 18,636 | 25,236 | +35% | 1 | 1 | 0% | 3,368 | 4,380 | +30% | 0 | 0 | — |
▸case-22 Please draft a Steam Store page description, key feature bullet list, and recommended tags for an indie tactical roguelike game to maximize conversion rate during Next Fest. | pass→pass | 18,711 | 15,862 | -15% | 1 | 1 | 0% | 2,529 | 2,511 | -1% | 0 | 0 | — |