0986105dc7f6ec9962e618d4302be8db13b34e46,example.py,,editor_example,#,150
Before Change
env.set_control_scheme("uav1", ControlSchemes.UAV_ROLL_PITCH_YAW_RATE_ALT)
command0 = [0, 0, 0, 1]
command1 = [0, 2, 3, 10]
env.act("uav0", command0)
env.act("uav1", command1)
for _ in range(500):
After Change
sensors = [Sensors.RGB_CAMERA, Sensors.LOCATION_SENSOR, Sensors.VELOCITY_SENSOR]
agent = AgentDefinition("uav0", agents.UavAgent, sensors)
env = HolodeckEnvironment(agent, start_world=False)
env.agents["uav0"].set_control_scheme(1)
command = [0, 0, 10, 50]
for i in range(10):
env.reset()
In pattern: SUPERPATTERN
Frequency: 3
Non-data size: 2
Instances
Project Name: BYU-PCCL/holodeck
Commit Name: 0986105dc7f6ec9962e618d4302be8db13b34e46
Time: 2018-11-16
Author: nickwalton00@gmail.com
File Name: example.py
Class Name:
Method Name: editor_example
Project Name: BYU-PCCL/holodeck
Commit Name: 190f60b063198d655516f4be66bf8f37b953caae
Time: 2018-09-20
Author: maxdrob1@gmail.com
File Name: example.py
Class Name:
Method Name: editor_example
Project Name: BYU-PCCL/holodeck
Commit Name: 5323e82c9c9e0959ef3553becf24a0fa6d2610f1
Time: 2018-09-25
Author: nickwalton00@gmail.com
File Name: example.py
Class Name:
Method Name: multi_agent_example