Skip to content

Releases: jjshoots/PyFlyt

0.19.0

23 Mar 00:29
Compare
Choose a tag to compare

Fixes #29, for real this time.

0.17.0

11 Mar 13:40
Compare
Choose a tag to compare
  • Added flight_mode kwarg to all Gymnasium environments.
  • Added more typehints to various functions to ease development.

0.16.0

13 Feb 15:18
Compare
Choose a tag to compare

Bug Fix

This release fixes a blatant error in the drag update equation for boring bodies (link).

0.15.7

16 Jan 02:01
6306292
Compare
Choose a tag to compare

Changes

  • Fix None error in obj_collision function by @Yamboy1 in #19

0.15.6

12 Jan 14:55
Compare
Choose a tag to compare

Minor bug fixes.

0.15.4

04 Dec 22:51
Compare
Choose a tag to compare

Added dogfight env.

0.15.3

04 Dec 19:25
Compare
Choose a tag to compare

Bug fix: Verified MAQuadXHover is leanable.

0.15.2

04 Dec 16:52
Compare
Choose a tag to compare
increase reward

0.15.1

04 Dec 14:05
Compare
Choose a tag to compare

Bug Fixes

  • Fix bug where drone was spawning in the ground for ma hover.

0.15.0

04 Dec 14:01
Compare
Choose a tag to compare

PZ environments converted to parallel

from PyFlyt.pz_envs import MAQuadXHoverEnv

env = MAQuadXHoverEnv(render_mode="human")
observations, infos = env.reset()

while env.agents:
    # this is where you would insert your policy
    actions = {agent: env.action_space(agent).sample() for agent in env.agents}

    observations, rewards, terminations, truncations, infos = env.step(actions)
env.close()