Develop and Download Open Source Software

Browse Subversion Repository

Contents of /trunk/twintower.gmx/objects/obj_title.object.gmx

Parent Directory Parent Directory | Revision Log Revision Log


Revision 214 - (show annotations) (download)
Sun Oct 26 15:41:44 2014 UTC (9 years, 7 months ago) by syun77
File size: 3499 byte(s)
ミッションモードを無効化
1 <!--This Document is generated by GameMaker, if you edit it by hand then you do so at your own risk!-->
2 <object>
3 <spriteName>spr_title</spriteName>
4 <solid>0</solid>
5 <visible>-1</visible>
6 <depth>-200</depth>
7 <persistent>0</persistent>
8 <parentName>&lt;undefined&gt;</parentName>
9 <maskName>&lt;undefined&gt;</maskName>
10 <events>
11 <event eventtype="0" enumb="0">
12 <action>
13 <libid>1</libid>
14 <id>603</id>
15 <kind>7</kind>
16 <userelative>0</userelative>
17 <isquestion>0</isquestion>
18 <useapplyto>-1</useapplyto>
19 <exetype>2</exetype>
20 <functionname></functionname>
21 <codestring></codestring>
22 <whoName>self</whoName>
23 <relative>0</relative>
24 <isnot>0</isnot>
25 <arguments>
26 <argument>
27 <kind>1</kind>
28 <string>/// 初期化
29 self.playtimer = 0;
30
31 </string>
32 </argument>
33 </arguments>
34 </action>
35 </event>
36 <event eventtype="3" enumb="0">
37 <action>
38 <libid>1</libid>
39 <id>603</id>
40 <kind>7</kind>
41 <userelative>0</userelative>
42 <isquestion>0</isquestion>
43 <useapplyto>-1</useapplyto>
44 <exetype>2</exetype>
45 <functionname></functionname>
46 <codestring></codestring>
47 <whoName>self</whoName>
48 <relative>0</relative>
49 <isnot>0</isnot>
50 <arguments>
51 <argument>
52 <kind>1</kind>
53 <string>/// 更新
54 self.playtimer++;
55
56 image_angle = radtodeg((sin(playtimer / 40.0)) * 0.1);
57
58 if(isPressEnter())
59 {
60 //room_goto(room_mission);
61 room_goto(room_main);
62 }
63
64 // TODO:ミッション選択
65 if(isPressLeft()) {
66 global.nMission -= 1;
67 }
68 if(isPressRight()) {
69 global.nMission += 1;
70 }
71
72 </string>
73 </argument>
74 </arguments>
75 </action>
76 </event>
77 <event eventtype="8" enumb="0">
78 <action>
79 <libid>1</libid>
80 <id>603</id>
81 <kind>7</kind>
82 <userelative>0</userelative>
83 <isquestion>0</isquestion>
84 <useapplyto>-1</useapplyto>
85 <exetype>2</exetype>
86 <functionname></functionname>
87 <codestring></codestring>
88 <whoName>self</whoName>
89 <relative>0</relative>
90 <isnot>0</isnot>
91 <arguments>
92 <argument>
93 <kind>1</kind>
94 <string>/// 描画
95 draw_self();
96
97 exit;
98 // TODO:ミッション数を描画
99 draw_set_font(global.fontOmega);
100 draw_set_color(c_white);
101 draw_set_halign(fa_left);
102 draw_text(8, 600, "MISSION:" + string(global.nMission));
103
104 </string>
105 </argument>
106 </arguments>
107 </action>
108 </event>
109 </events>
110 <PhysicsObject>0</PhysicsObject>
111 <PhysicsObjectSensor>0</PhysicsObjectSensor>
112 <PhysicsObjectShape>0</PhysicsObjectShape>
113 <PhysicsObjectDensity>0.5</PhysicsObjectDensity>
114 <PhysicsObjectRestitution>0.100000001490116</PhysicsObjectRestitution>
115 <PhysicsObjectGroup>0</PhysicsObjectGroup>
116 <PhysicsObjectLinearDamping>0.100000001490116</PhysicsObjectLinearDamping>
117 <PhysicsObjectAngularDamping>0.100000001490116</PhysicsObjectAngularDamping>
118 <PhysicsObjectFriction>0.200000002980232</PhysicsObjectFriction>
119 <PhysicsObjectAwake>-1</PhysicsObjectAwake>
120 <PhysicsObjectKinematic>0</PhysicsObjectKinematic>
121 <PhysicsShapePoints>
122 <point>191,127</point>
123 <point>191,191</point>
124 </PhysicsShapePoints>
125 </object>

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26