Describe the bug
Modifiers and history buffer cannot be used together in observation term.
Steps to reproduce
Setting any of the observation term with both history_length and class-based modifiers (e.g. Integrator) will lead to dimension mismatch error.
For example
from isaaclab.utils import IntegratorCfg
actions = ObsTerm(
func=mdp.last_action,
history_length=5,
modifiers=[
IntegratorCfg(dt=0.02),
],
)
Additional context
Running on IsaacLab 2.1.0
Checklist
Acceptance Criteria
Add the criteria for which this task is considered done. If not known at issue creation time, you can add this once the issue is assigned.