fix(isaacgym): default projectiles=1 + match hidden-projectile layout…#223
Open
jyf588 wants to merge 1 commit into
Open
fix(isaacgym): default projectiles=1 + match hidden-projectile layout…#223jyf588 wants to merge 1 commit into
jyf588 wants to merge 1 commit into
Conversation
… across backends Fixes #222. - Add ProjectileConfig.hide_spacing (4 m default) + hidden_z_for_index() helper so hidden cubes get unique z slots; use it at both spawn time (all 4 backends) and runtime hide paths (_update_projectiles / _hide_projectiles_for_envs). - IsaacGym: override SimulatorConfig.projectile default_factory to ProjectileConfig(num_projectiles=1). Each cube is a full dynamic rigid body that allocates PhysX contact patches against the wildcard-collidable add_triangle_mesh terrain; at 4096 envs × 5 cubes this exceeded the ~80k maxRigidPatchCount budget (not configurable from gymapi.PhysXParams). Other backends keep the 5-cube default. Override via --overrides simulator.projectile.num_projectiles=N to opt back into more cubes. - IsaacGym / IsaacLab / Newton: in _set_projectile_root_states, rewrite hidden cubes' X/Y by env_id (z <= hide_z is the hidden marker, throws skip this) so post-init projectile layout is consistent across backends. - base_simulator._throw_projectile: early-return when num_projectiles==0 so backends that opt out can't crash on the J key. Signed-off-by: protomotions <protomotions.nvidia@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
… across backends
Fixes #222.