Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
KincoActuatorIsaacLab
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
kevin
KincoActuatorIsaacLab
Commits
acd49eaa
Commit
acd49eaa
authored
Jan 18, 2023
by
Mayank Mittal
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removes replicate_physics flag in IsaacEnv as it doesn't work with dr
parent
3f6197dc
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
extension.toml
...ce/extensions/omni.isaac.orbit_envs/config/extension.toml
+1
-1
CHANGELOG.rst
source/extensions/omni.isaac.orbit_envs/docs/CHANGELOG.rst
+9
-0
isaac_env.py
.../omni.isaac.orbit_envs/omni/isaac/orbit_envs/isaac_env.py
+1
-3
No files found.
source/extensions/omni.isaac.orbit_envs/config/extension.toml
View file @
acd49eaa
[package]
[package]
# Note: Semantic Versioning is used: https://semver.org/
# Note: Semantic Versioning is used: https://semver.org/
version
=
"0.1.
0
"
version
=
"0.1.
1
"
# Description
# Description
title
=
"ORBIT Environments"
title
=
"ORBIT Environments"
...
...
source/extensions/omni.isaac.orbit_envs/docs/CHANGELOG.rst
View file @
acd49eaa
Changelog
Changelog
---------
---------
0.1.1 (2023-01-18)
~~~~~~~~~~~~~~~~~~
Fixed
^^^^^
* Fixed a bug in ``Isaac-Velocity-Anymal-C-v0`` where the domain randomization is
not applicable if cloning the environments with ``replicate_physics=True``.
0.1.0 (2023-01-17)
0.1.0 (2023-01-17)
~~~~~~~~~~~~~~~~~~
~~~~~~~~~~~~~~~~~~
...
...
source/extensions/omni.isaac.orbit_envs/omni/isaac/orbit_envs/isaac_env.py
View file @
acd49eaa
...
@@ -146,9 +146,7 @@ class IsaacEnv(gym.Env):
...
@@ -146,9 +146,7 @@ class IsaacEnv(gym.Env):
global_prim_paths
=
list
()
global_prim_paths
=
list
()
# clone the scenes into the namespace "/World/envs" based on template namespace
# clone the scenes into the namespace "/World/envs" based on template namespace
self
.
envs_prim_paths
=
cloner
.
generate_paths
(
self
.
env_ns
+
"/env"
,
self
.
num_envs
)
self
.
envs_prim_paths
=
cloner
.
generate_paths
(
self
.
env_ns
+
"/env"
,
self
.
num_envs
)
self
.
envs_positions
=
cloner
.
clone
(
self
.
envs_positions
=
cloner
.
clone
(
source_prim_path
=
self
.
template_env_ns
,
prim_paths
=
self
.
envs_prim_paths
)
source_prim_path
=
self
.
template_env_ns
,
prim_paths
=
self
.
envs_prim_paths
,
replicate_physics
=
True
)
# convert environment positions to torch tensor
# convert environment positions to torch tensor
self
.
envs_positions
=
torch
.
tensor
(
self
.
envs_positions
,
dtype
=
torch
.
float
,
device
=
self
.
device
)
self
.
envs_positions
=
torch
.
tensor
(
self
.
envs_positions
,
dtype
=
torch
.
float
,
device
=
self
.
device
)
# filter collisions within each environment instance
# filter collisions within each environment instance
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment