*Minimapを制御するために〜Gathererの解析〜 [#v44a205a]
 
 **Gatherer.xml [#nbcd819c]
 
 ***AddOn.xml用の定型文 [#a89d5975]
  <Ui xmlns="http://www.blizzard.com/wow/ui/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.blizzard.com/wow/ui/
 	..\FrameXML\UI.xsd">
 ***Scriptファイルの指定 [#q0ce4c44]
 	<Script file="localization.lua"/>
 	<Script file="GatherIcons.lua"/>
 	<Script file="Gatherer.lua"/>
 ***GathererUIの設定 [#k8947df6]
 	<Frame name="Gatherer" parent="UIParent">
 	 <!--name:UIの名前-->
 	 <!--parent:親UIの名前(UIParentは全てのUIの親)-->
 		<Size>
 		 <!--UIのサイズ:0×0-->
 			<AbsDimension x="0" y="0"/>
 		</Size>
 		<Scripts>
 		 <!--それぞれの割り込みタイミングで呼び出されるスクリプト-->
 			<OnLoad>
 			 <!--ロードされたとき-->
 				Gatherer_OnLoad();
 			</OnLoad>
 			<OnEvent>
 			 <!--イベント(?)が発生したとき-->
 				Gatherer_OnEvent(event);
 			</OnEvent>
 			<OnUpdate>
 			 <!--アップデート(?)が発生したとき-->
 				Gatherer_TimeCheck(arg1);
 			</OnUpdate>
 		</Scripts>
 	</Frame>
 

トップ   新規 一覧 単語検索 最終更新   ヘルプ   最終更新のRSS