Scene Interface Reference

A message containing a description of a scene. More...


Detailed Description

A message containing a description of a scene.


import "header.proto";
import "color.proto";
import "fog.proto";
import "shadows.proto";
import "visual.proto";
import "pose.proto";
import "light.proto";
import "joint.proto";
import "model.proto";

message Scene
{
  required string name         = 1;
  optional Color ambient       = 2;
  optional Color background    = 3;
  optional string sky_material = 4;
  optional bool shadows        = 5 [default = true];
  optional Fog fog             = 6;
  optional bool grid           = 7;

  repeated Model model         = 8;
  repeated Light light         = 9; 
  repeated Joint joint         = 10;
}

/// 

The documentation for this interface was generated from the following file: