b6c75018f5942cb58a38f40837ff3a03c8be4eda,example.py,,editor_example,#,146

Before Change


    sensors = [Sensors.PIXEL_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):

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.set_control_scheme("uav0", ControlSchemes.UAV_ROLL_PITCH_YAW_RATE_ALT)
    command = [0, 0, 0, 10]

    for i in range(10):
        env.reset()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 2

Instances


Project Name: BYU-PCCL/holodeck
Commit Name: b6c75018f5942cb58a38f40837ff3a03c8be4eda
Time: 2018-11-10
Author: nickwalton00@gmail.com
File Name: example.py
Class Name:
Method Name: editor_example


Project Name: BYU-PCCL/holodeck
Commit Name: c654fb044a9084fcd85606f18127c82dfd46182f
Time: 2019-02-11
Author: maxdrob1@gmail.com
File Name: example.py
Class Name:
Method Name: editor_example


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