流星悟语 发表于 2015-8-12 13:27:48

EDC文件目录的地址映射代码

这段代码演示了如何转动.edc使用文件映射。它使用鼠标触发一个基本的动画单击显示旋转处理。
collections {
   group {
                name: "main";
                parts{
                         part {
                                 name: "rectangle";
            type: RECT;
            mouse_events: 1;
            description {
                  state: "default" 0.0;
               rel1.relative: 0.25 0.25;
               rel2.relative: 0.75 0.75;
               color: 130 130 200 255;
               map {
                               on: 1;
                               rotation.x: 0;
                               perspective_on: 1;
               }
            }
            description {
                  state: "rotated" 0.0;
                                        inherit: "default" 0.0;
                                        color: 130 130 200 255;
               map {
                               rotation.x: 65;
               }
            }
         }
         }
      programs {
         program {
            name: "animation";
            signal: "mouse,down,*";
            source: "rectangle";
            action: STATE_SET "rotated" 0.0;
            transition: LINEAR 1.0;
            target: "rectangle";
         }
      }      
      }
}

页: [1]
查看完整版本: EDC文件目录的地址映射代码