19 Commits
Author SHA1 Message Date
pieeebot 01abe05b18 attempt at trying to get XB360 to work 2026-08-01 06:15:37 +03:00
pieeebot 2170209e26 Merge branch 'main' into networking 2026-08-01 02:04:05 +03:00
pieeebot c8d404f7a4 fix: Xbox 360 build issues (#18)
Reviewed-on: #18
2026-07-31 22:54:53 +00:00
qloak 681fc929d2 whoops :o 2026-07-31 15:50:00 -07:00
qloak 036bdcff81 fix: fixed Xbox 360 build issues 2026-07-31 15:49:59 -07:00
qloak db7d47b0ff feat(xbox360): Enable Xbox 360 build configurations
- Enable all Xbox 360 ContentPackage/submission builds in solution
- Map Xbox 360 configs to actual Xbox 360 platform instead of Win32
- Add Build.0 lines for ContentPackage, CONTENTPACKAGE_SYMBOLS,
  ContentPackage_NO_TU, and ReleaseForArt Xbox 360 configs
- Remove xbdm.lib from Release/ContentPackage_Vita (debug-only lib)
- Add meme.xui from TU56 reference
2026-07-31 15:49:58 -07:00
pieeebot 991369547a fix compile error 2026-07-31 22:35:05 +03:00
pieeebot dbd90a75c9 add lcemp networking + ps3 support
YES I KNOW ITS GARBAGE, THATS WHY ITS NOT ON MAIN

ILL FIX IT UP IN FUTURE COMMITS THEN MERGE TO MAIN
2026-07-31 22:08:30 +03:00
pieeebot 51ee0d8e57 fix(Windows64): audio crashes, lighting issues and music not being copied correctly 2026-07-23 18:00:55 +03:00
pieeebot 9ef66ed71b fix(TU22): Boat, Baby zombie and Texture changes.
TU22:
- Corrected baby zombie hit boxes size.
- Fix for players sometimes taking fall damage while in a boat.
- Updated Lapis Lazuli's block texture
2026-07-22 19:59:49 +03:00
str1k3r b6e2886476 fix: excess step from being in release 2026-07-21 19:21:43 -04:00
str1k3r 69541f1abf fix: ps3 compiling & only uncap fps on windows 2026-07-21 17:11:11 -04:00
str1k3r 09cedad533 fix: workflow stage exe path 2026-07-21 16:02:55 -04:00
str1k3r 59b9fec5c2 fix: workflow 2026-07-21 14:54:07 -04:00
str1k3r 6625df6c3e feat: release workflow 2026-07-21 14:52:11 -04:00
str1k3r e0ed220c69 fix: workflow 2026-07-21 17:51:21 +00:00
str1k3r cba1f9ea3b fix: workflow 2026-07-21 17:49:29 +00:00
str1k3r 79bfa4eb56 fix: using wrong msbuild ver 2026-07-21 17:43:12 +00:00
str1k3r 12f7125335 feat: test ps3 workflow 2026-07-21 17:25:18 +00:00
287 changed files with 196357 additions and 238051 deletions
+106
View File
@@ -0,0 +1,106 @@
name: Build & Release
on:
workflow_dispatch:
inputs:
version:
description: 'Version tag for release (e.g. v1.0.0).'
required: true
default: ''
notes:
description: 'URL to notes for release.'
required: false
default: ''
jobs:
validate:
runs-on: windows-2022
steps:
- name: Validate version format
run: |
if (-not ("${{ inputs.version }}" -match '^v\d+\.\d+\.\d+[a-zA-Z0-9.-]*$')) {
Write-Error "Version '${{ inputs.version }}' doesn't match expected format (e.g. v1.0.0)"
exit 1
}
build:
runs-on: windows-2022
strategy:
matrix:
configuration: [Release]
platform: [PS3, Windows64] #[PS3, PSVita, Xbox 360, ORBIS, Windows64]
steps:
- name: Checkout Repository
uses: https://github.com/actions/checkout@v4
- name: Build Cafeberry
run: |
& "C:\Windows\Microsoft.NET\Framework\v4.0.30319\MSBuild.exe" MinecraftConsoles.sln `
/p:Configuration=${{ matrix.configuration }} `
/p:Platform=${{ matrix.platform }} `
/m
- name: Zip Build (Consoles)
if: matrix.platform != 'Windows64'
run: 7z a -r LCE${{ matrix.platform }}.zip ./${{ matrix.platform }}_${{ matrix.configuration }}/* "-x!*.ipdb" "-x!*.iobj"
- name: Zip Build (Windows64)
if: matrix.platform == 'Windows64'
run: 7z a -r LCE${{ matrix.platform }}.zip ./x64/${{ matrix.configuration }}/* "-x!*.ipdb" "-x!*.iobj"
- name: Stage artifacts
run: |
New-Item -ItemType Directory -Force -Path staging
Copy-Item LCE${{ matrix.platform }}.zip staging/
- name: Stage exe
if: matrix.platform == 'Windows64'
run: |
Copy-Item ./x64/${{ matrix.configuration }}/Minecraft.Client.exe staging/
- name: Upload artifacts
uses: https://github.com/actions/upload-artifact@v3
with:
name: build-${{ matrix.platform }}
path: staging/*
release:
needs: build
runs-on: windows-2022
steps:
- name: Download all build artifacts
uses: https://github.com/actions/download-artifact@v3
with:
path: downloaded
- name: Fetch release notes
id: notes
run: |
$notesSource = "${{ inputs.notes }}"
$fallback = "## Cafeberry`n`n### Whoever made this release forgot to put notes, sorry!"
if ($notesSource -match '^https?://') {
try {
$body = (Invoke-WebRequest -Uri $notesSource -UseBasicParsing).Content
if ([string]::IsNullOrWhiteSpace($body)) { $body = $fallback }
} catch {
$body = $fallback
}
}
"description<<EOF`n$body`nEOF" | Out-File -Append -Encoding utf8 -NoNewline:$false $env:GITHUB_OUTPUT
- name: Publish Release
uses: akkuman/gitea-release-action@v1
with:
name: ${{ inputs.version }}
server_url: ${{ gitea.server_url }}
repository: ${{ gitea.repository }}
token: ${{ gitea.token }}
tag_name: ${{ inputs.version }}
prerelease: false
verbose: true
files: downloaded/**/*
body: ${{ steps.notes.outputs.description }}
+1 -1
View File
@@ -1941,7 +1941,7 @@ void ClientConnection::handlePreLogin(shared_ptr<PreLoginPacket> packet)
isAtLeastOneFriend = TRUE; isAtLeastOneFriend = TRUE;
cantPlayContentRestricted= FALSE; cantPlayContentRestricted= FALSE;
#if ( defined __PS3__ || defined __ORBIS__ || defined __PSVITA__) #if !defined DISABLE_PSN && ( defined __PS3__ || defined __ORBIS__ || defined __PSVITA__)
if(!g_NetworkManager.IsHost() && !app.GetGameHostOption(eGameHostOption_FriendsOfFriends)) if(!g_NetworkManager.IsHost() && !app.GetGameHostOption(eGameHostOption_FriendsOfFriends))
{ {
+1 -1
View File
@@ -162,7 +162,7 @@ MOJANG_DATA;
typedef struct typedef struct
{ {
eDLCContentType eDLCType; eDLCContentType eDLCType;
#if defined( __PS3__) || defined(__ORBIS__) || defined (__PSVITA__) #if !defined(DISABLE_PSN) && defined( __PS3__) || defined(__ORBIS__) || defined (__PSVITA__)
char chImageURL[256];//SCE_NP_COMMERCE2_URL_LEN char chImageURL[256];//SCE_NP_COMMERCE2_URL_LEN
#else #else
+19 -5
View File
@@ -5094,6 +5094,9 @@ void CMinecraftApp::NotificationsCallback(LPVOID pParam,DWORD dwNotification, un
#if defined __PS3__ || defined __PSVITA__ || defined __ORBIS__ #if defined __PS3__ || defined __PSVITA__ || defined __ORBIS__
int CMinecraftApp::MustSignInFullVersionPurchaseReturned(void *pParam,int iPad,C4JStorage::EMessageResult result) int CMinecraftApp::MustSignInFullVersionPurchaseReturned(void *pParam,int iPad,C4JStorage::EMessageResult result)
{ {
#ifdef DISABLE_PSN
return 0;
#else
if(result==C4JStorage::EMessage_ResultAccept) if(result==C4JStorage::EMessage_ResultAccept)
{ {
#ifdef __PS3__ #ifdef __PS3__
@@ -5106,11 +5109,15 @@ int CMinecraftApp::MustSignInFullVersionPurchaseReturned(void *pParam,int iPad,C
} }
return 0; return 0;
#endif
} }
#if defined __PS3__ || defined __PSVITA__ || defined __ORBIS__ #if defined __PS3__ || defined __PSVITA__ || defined __ORBIS__
int CMinecraftApp::MustSignInFullVersionPurchaseReturnedExitTrial(void *pParam,int iPad,C4JStorage::EMessageResult result) int CMinecraftApp::MustSignInFullVersionPurchaseReturnedExitTrial(void *pParam,int iPad,C4JStorage::EMessageResult result)
{ {
#ifdef DISABLE_PSN
return 0;
#else
if(result==C4JStorage::EMessage_ResultAccept) if(result==C4JStorage::EMessage_ResultAccept)
{ {
#ifdef __PS3__ #ifdef __PS3__
@@ -5126,6 +5133,7 @@ int CMinecraftApp::MustSignInFullVersionPurchaseReturnedExitTrial(void *pParam,i
app.SetAction(iPad,eAppAction_ExitWorldTrial); app.SetAction(iPad,eAppAction_ExitWorldTrial);
return 0; return 0;
#endif
} }
#endif #endif
@@ -6761,7 +6769,7 @@ wstring CMinecraftApp::GetIconReplacement(unsigned int uiIcon)
#endif #endif
} }
#if defined(__PS3__) || defined(__ORBIS__) || defined (__PSVITA__) #if !defined(DISABLE_PSN) && defined(__PS3__) || defined(__ORBIS__) || defined (__PSVITA__)
unordered_map<PlayerUID, MOJANG_DATA *, PlayerUID::Hash> CMinecraftApp::MojangData; unordered_map<PlayerUID, MOJANG_DATA *, PlayerUID::Hash> CMinecraftApp::MojangData;
unordered_map<int, char * > CMinecraftApp::DLCTextures_PackID; unordered_map<int, char * > CMinecraftApp::DLCTextures_PackID;
unordered_map<string, DLC_INFO * > CMinecraftApp::DLCInfo; unordered_map<string, DLC_INFO * > CMinecraftApp::DLCInfo;
@@ -6772,6 +6780,12 @@ unordered_map<int, wstring > CMinecraftApp::DLCTextures_PackID; // for mash-up
//unordered_map<ULONGLONG,DLC_INFO * > CMinecraftApp::DLCInfo_Trial; // full offerid, dlc_info //unordered_map<ULONGLONG,DLC_INFO * > CMinecraftApp::DLCInfo_Trial; // full offerid, dlc_info
unordered_map<wstring,DLC_INFO * > CMinecraftApp::DLCInfo_Full; // full offerid, dlc_info unordered_map<wstring,DLC_INFO * > CMinecraftApp::DLCInfo_Full; // full offerid, dlc_info
unordered_map<wstring, wstring > CMinecraftApp::DLCInfo_SkinName; // skin name, full offer id unordered_map<wstring, wstring > CMinecraftApp::DLCInfo_SkinName; // skin name, full offer id
#elif defined(DISABLE_PSN) && defined(__PS3__)
unordered_map<PlayerUID, MOJANG_DATA *, PlayerUID::Hash> CMinecraftApp::MojangData;
unordered_map<int, ULONGLONG > CMinecraftApp::DLCTextures_PackID;
unordered_map<ULONGLONG, DLC_INFO * > CMinecraftApp::DLCInfo_Trial;
unordered_map<ULONGLONG, DLC_INFO * > CMinecraftApp::DLCInfo_Full;
unordered_map<wstring, ULONGLONG > CMinecraftApp::DLCInfo_SkinName;
#else #else
unordered_map<PlayerUID, MOJANG_DATA *> CMinecraftApp::MojangData; unordered_map<PlayerUID, MOJANG_DATA *> CMinecraftApp::MojangData;
unordered_map<int, ULONGLONG > CMinecraftApp::DLCTextures_PackID; unordered_map<int, ULONGLONG > CMinecraftApp::DLCTextures_PackID;
@@ -6854,7 +6868,7 @@ HRESULT CMinecraftApp::RegisterConfigValues(WCHAR *pType, int iValue)
return hr; return hr;
} }
#if (defined _XBOX || defined _WINDOWS64) #if (defined _XBOX || defined _WINDOWS64 || defined DISABLE_PSN)
HRESULT CMinecraftApp::RegisterDLCData(WCHAR *pType, WCHAR *pBannerName, int iGender, __uint64 ullOfferID_Full, __uint64 ullOfferID_Trial, WCHAR *pFirstSkin, unsigned int uiSortIndex, int iConfig, WCHAR *pDataFile) HRESULT CMinecraftApp::RegisterDLCData(WCHAR *pType, WCHAR *pBannerName, int iGender, __uint64 ullOfferID_Full, __uint64 ullOfferID_Trial, WCHAR *pFirstSkin, unsigned int uiSortIndex, int iConfig, WCHAR *pDataFile)
{ {
HRESULT hr=S_OK; HRESULT hr=S_OK;
@@ -7046,7 +7060,7 @@ HRESULT CMinecraftApp::RegisterDLCData(char *pchDLCName, unsigned int uiSortInde
#if defined( __PS3__) || defined(__ORBIS__) || defined(__PSVITA__) #if !defined(DISABLE_PSN) && defined( __PS3__) || defined(__ORBIS__) || defined(__PSVITA__)
bool CMinecraftApp::GetDLCFullOfferIDForSkinID(const wstring &FirstSkin,ULONGLONG *pullVal) bool CMinecraftApp::GetDLCFullOfferIDForSkinID(const wstring &FirstSkin,ULONGLONG *pullVal)
{ {
AUTO_VAR(it, DLCInfo_SkinName.find(FirstSkin)); AUTO_VAR(it, DLCInfo_SkinName.find(FirstSkin));
@@ -7314,7 +7328,7 @@ DLC_INFO *CMinecraftApp::GetDLCInfoForProductName(WCHAR *pwchProductName)
return NULL; return NULL;
} }
#elif defined(__PS3__) || defined(__ORBIS__) || defined (__PSVITA__) #elif !defined(DISABLE_PSN) && defined(__PS3__) || defined(__ORBIS__) || defined (__PSVITA__)
#else #else
DLC_INFO *CMinecraftApp::GetDLCInfoForFullOfferID(ULONGLONG ullOfferID_Full) DLC_INFO *CMinecraftApp::GetDLCInfoForFullOfferID(ULONGLONG ullOfferID_Full)
@@ -9425,7 +9439,7 @@ byteArray CMinecraftApp::getArchiveFile(const wstring &filename)
// DLC // DLC
#if defined(__PS3__) || defined(__ORBIS__) || defined (__PSVITA__) #if !defined(DISABLE_PSN) && defined(__PS3__) || defined(__ORBIS__) || defined (__PSVITA__)
int CMinecraftApp::GetDLCInfoCount() int CMinecraftApp::GetDLCInfoCount()
{ {
return (int)DLCInfo.size(); return (int)DLCInfo.size();
+9 -3
View File
@@ -594,7 +594,7 @@ public:
MOJANG_DATA *GetMojangDataForXuid(PlayerUID xuid); MOJANG_DATA *GetMojangDataForXuid(PlayerUID xuid);
static HRESULT RegisterConfigValues(WCHAR *pType, int iValue); static HRESULT RegisterConfigValues(WCHAR *pType, int iValue);
#if defined(__PS3__) || defined(__ORBIS__) || defined(__PSVITA__) #if !defined(DISABLE_PSN) && defined(__PS3__) || defined(__ORBIS__) || defined(__PSVITA__)
HRESULT RegisterDLCData(char *pchDLCName, unsigned int uiSortIndex, char *pchImageURL); HRESULT RegisterDLCData(char *pchDLCName, unsigned int uiSortIndex, char *pchImageURL);
bool GetDLCFullOfferIDForSkinID(const wstring &FirstSkin,ULONGLONG *pullVal); bool GetDLCFullOfferIDForSkinID(const wstring &FirstSkin,ULONGLONG *pullVal);
DLC_INFO *GetDLCInfoForTrialOfferID(ULONGLONG ullOfferID_Trial); DLC_INFO *GetDLCInfoForTrialOfferID(ULONGLONG ullOfferID_Trial);
@@ -631,7 +631,7 @@ private:
std::vector <SCreditTextItemDef *> vDLCCredits; std::vector <SCreditTextItemDef *> vDLCCredits;
#if defined(__PS3__) || defined(__ORBIS__) || defined (__PSVITA__) #if !defined(DISABLE_PSN) && defined(__PS3__) || defined(__ORBIS__) || defined (__PSVITA__)
static unordered_map<PlayerUID,MOJANG_DATA *, PlayerUID::Hash > MojangData; static unordered_map<PlayerUID,MOJANG_DATA *, PlayerUID::Hash > MojangData;
static unordered_map<int, char * > DLCTextures_PackID; // for mash-up packs & texture packs static unordered_map<int, char * > DLCTextures_PackID; // for mash-up packs & texture packs
static unordered_map<string,DLC_INFO * > DLCInfo; static unordered_map<string,DLC_INFO * > DLCInfo;
@@ -642,6 +642,12 @@ private:
//static unordered_map<wstring,DLC_INFO * > DLCInfo_Trial; // full offerid, dlc_info //static unordered_map<wstring,DLC_INFO * > DLCInfo_Trial; // full offerid, dlc_info
static unordered_map<wstring,DLC_INFO * > DLCInfo_Full; // full offerid, dlc_info static unordered_map<wstring,DLC_INFO * > DLCInfo_Full; // full offerid, dlc_info
static unordered_map<wstring, wstring > DLCInfo_SkinName; // skin name, full offer id static unordered_map<wstring, wstring > DLCInfo_SkinName; // skin name, full offer id
#elif defined(DISABLE_PSN) && defined(__PS3__)
static unordered_map<PlayerUID,MOJANG_DATA *, PlayerUID::Hash > MojangData;
static unordered_map<int, ULONGLONG > DLCTextures_PackID; // for mash-up packs & texture packs
static unordered_map<ULONGLONG,DLC_INFO * > DLCInfo_Trial; // full offerid, dlc_info
static unordered_map<ULONGLONG,DLC_INFO * > DLCInfo_Full; // full offerid, dlc_info
static unordered_map<wstring, ULONGLONG > DLCInfo_SkinName; // skin name, full offer id
#else #else
static unordered_map<PlayerUID,MOJANG_DATA * > MojangData; static unordered_map<PlayerUID,MOJANG_DATA * > MojangData;
static unordered_map<int, ULONGLONG > DLCTextures_PackID; // for mash-up packs & texture packs static unordered_map<int, ULONGLONG > DLCTextures_PackID; // for mash-up packs & texture packs
@@ -772,7 +778,7 @@ public:
void ClearTMSPPFilesRetrieved(); void ClearTMSPPFilesRetrieved();
unsigned int AddTMSPPFileTypeRequest(eDLCContentType eType, bool bPromote=false); unsigned int AddTMSPPFileTypeRequest(eDLCContentType eType, bool bPromote=false);
int GetDLCInfoTexturesOffersCount(); int GetDLCInfoTexturesOffersCount();
#if defined( __PS3__) || defined(__ORBIS__) || defined(__PSVITA__) #if !defined(DISABLE_PSN) && defined( __PS3__) || defined(__ORBIS__) || defined(__PSVITA__)
DLC_INFO *GetDLCInfo(int iIndex); DLC_INFO *GetDLCInfo(int iIndex);
DLC_INFO *GetDLCInfo(char *); DLC_INFO *GetDLCInfo(char *);
DLC_INFO *GetDLCInfoFromTPackID(int iTPID); DLC_INFO *GetDLCInfoFromTPackID(int iTPID);
@@ -9,7 +9,7 @@ const wstring LeaderboardManager::filterNames[eNumFilterModes] =
L"Friends", L"MyScore", L"TopRank" L"Friends", L"MyScore", L"TopRank"
}; };
#if !defined(_WINDOWS64) && !defined(_DURANGO) && !defined(__ORBIS__) && !defined(__PS3__) && !defined(__PSVITA__) && !defined(_XBOX) #if !defined(_DURANGO) && !defined(_WINDOWS64) && !defined(_XBOX) && !defined(__ORBIS__) // str1k3r - some platforms complain about this, also this wasnt in the leak?
LeaderboardManager *LeaderboardManager::m_instance = NULL; LeaderboardManager *LeaderboardManager::m_instance = NULL;
#endif #endif
+699
View File
@@ -0,0 +1,699 @@
<XuiCanvas version="000c">
<Properties>
<Width>1280.000000</Width>
<Height>720.000000</Height>
</Properties>
<XuiScene>
<Properties>
<Id>BeaconMenu</Id>
<Width>1280.000000</Width>
<Height>720.000000</Height>
<ClassOverride>CXuiSceneBeacon</ClassOverride>
<Visual>XuiBlankScene</Visual>
<DefaultFocus>Pointer</DefaultFocus>
</Properties>
<XuiScene>
<Properties>
<Id>Group</Id>
<Width>520.000000</Width>
<Height>510.000000</Height>
<Position>380.000031,120.000046,0.000000</Position>
<Anchor>15</Anchor>
<Visual>XuiScene</Visual>
<DefaultFocus>Pointer</DefaultFocus>
</Properties>
<XuiList>
<Properties>
<Id>UseRow</Id>
<Width>381.000000</Width>
<Height>50.000000</Height>
<Position>70.000000,444.000000,0.000000</Position>
<Anchor>8</Anchor>
<ClassOverride>CXuiCtrlSlotList</ClassOverride>
<Visual>ItemGridVertical</Visual>
</Properties>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
</XuiList>
<XuiList>
<Properties>
<Id>Inventory</Id>
<Width>378.000000</Width>
<Height>150.000000</Height>
<Position>70.000000,305.000000,0.000000</Position>
<Anchor>8</Anchor>
<ClassOverride>CXuiCtrlSlotList</ClassOverride>
<Visual>ItemGridVertical</Visual>
</Properties>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
</XuiList>
<XuiControl>
<Properties>
<Id>SecondaryPanel</Id>
<Width>234.000000</Width>
<Height>210.000000</Height>
<Position>262.000000,24.000000,0.000000</Position>
<Visual>PanelRecessed</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>PrimaryPanel</Id>
<Width>234.000000</Width>
<Height>210.000000</Height>
<Position>24.000000,24.000000,0.000000</Position>
<Visual>PanelRecessed</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiLabel>
<Properties>
<Id>PrimaryText</Id>
<Width>230.000000</Width>
<Height>32.000000</Height>
<Position>26.000000,26.000000,0.000000</Position>
<Anchor>9</Anchor>
<BlendMode>1</BlendMode>
<Visual>XuiLabelDarkCentredWrap</Visual>
<Text>FJ_LabelBlack</Text>
</Properties>
</XuiLabel>
<XuiLabel>
<Properties>
<Id>SecondaryText</Id>
<Width>230.000000</Width>
<Height>63.000000</Height>
<Position>264.000061,26.000008,0.000000</Position>
<Anchor>3</Anchor>
<Visual>XuiLabelDarkCentredWrap</Visual>
<Text>FJ_LabelBlack</Text>
</Properties>
</XuiLabel>
<XuiControl>
<Properties>
<Id>PrimaryTierOneOne</Id>
<Width>44.000000</Width>
<Height>44.000000</Height>
<Position>122.000000,66.000000,0.000000</Position>
<Anchor>2</Anchor>
<ClassOverride>CXuiCtrlBeaconButton</ClassOverride>
<Visual>BeaconButton</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>PrimaryTierOneTwo</Id>
<Width>44.000000</Width>
<Height>44.000000</Height>
<Position>186.000000,66.000000,0.000000</Position>
<Anchor>2</Anchor>
<ClassOverride>CXuiCtrlBeaconButton</ClassOverride>
<Visual>BeaconButton</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>PrimaryTierTwoOne</Id>
<Width>44.000000</Width>
<Height>44.000000</Height>
<Position>122.000000,120.000000,0.000000</Position>
<Anchor>2</Anchor>
<ClassOverride>CXuiCtrlBeaconButton</ClassOverride>
<Visual>BeaconButton</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>PrimaryTierTwoTwo</Id>
<Width>44.000000</Width>
<Height>44.000000</Height>
<Position>186.000000,120.000000,0.000000</Position>
<Anchor>2</Anchor>
<ClassOverride>CXuiCtrlBeaconButton</ClassOverride>
<Visual>BeaconButton</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>PrimaryTierThree</Id>
<Width>44.000000</Width>
<Height>44.000000</Height>
<Position>154.000000,174.000000,0.000000</Position>
<Anchor>2</Anchor>
<ClassOverride>CXuiCtrlBeaconButton</ClassOverride>
<Visual>BeaconButton</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>SecondaryOne</Id>
<Width>44.000000</Width>
<Height>44.000000</Height>
<Position>324.000031,148.000000,0.000000</Position>
<Anchor>2</Anchor>
<ClassOverride>CXuiCtrlBeaconButton</ClassOverride>
<Visual>BeaconButton</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>SecondaryTwo</Id>
<Width>44.000000</Width>
<Height>44.000000</Height>
<Position>388.000092,148.000000,0.000000</Position>
<Anchor>2</Anchor>
<ClassOverride>CXuiCtrlBeaconButton</ClassOverride>
<Visual>BeaconButton</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>Confirm</Id>
<Width>44.000000</Width>
<Height>44.000000</Height>
<Position>403.000000,246.000031,0.000000</Position>
<Anchor>8</Anchor>
<ClassOverride>CXuiCtrlBeaconButton</ClassOverride>
<Visual>BeaconButton</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiList>
<Properties>
<Id>Payment</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>280.000092,248.000046,0.000000</Position>
<Anchor>9</Anchor>
<ClassOverride>CXuiCtrlSlotList</ClassOverride>
<Visual>ItemGridVertical</Visual>
</Properties>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
<XuiListItem>
<Properties>
<Id>control_ListItem</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Anchor>7</Anchor>
<Pivot>0.000000,50.000000,0.000000</Pivot>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItemListItem</ClassOverride>
<Visual>ItemButton</Visual>
<PressKey>22594</PressKey>
<Layout>4</Layout>
</Properties>
</XuiListItem>
</XuiList>
<XuiLabel>
<Properties>
<Id>Emerald</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>70.000046,247.999969,0.000000</Position>
<Anchor>4</Anchor>
<Show>false</Show>
<ColorWriteFlags>7</ColorWriteFlags>
<ClassOverride>CXuiCtrlCraftIngredientSlot</ClassOverride>
<Visual>ItemIconBlank</Visual>
</Properties>
</XuiLabel>
<XuiLabel>
<Properties>
<Id>Diamond</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>118.000031,248.000000,0.000000</Position>
<Anchor>4</Anchor>
<Show>false</Show>
<ColorWriteFlags>7</ColorWriteFlags>
<ClassOverride>CXuiCtrlCraftIngredientSlot</ClassOverride>
<Visual>ItemIconBlank</Visual>
</Properties>
</XuiLabel>
<XuiLabel>
<Properties>
<Id>Gold</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>166.000015,248.000000,0.000000</Position>
<Anchor>4</Anchor>
<Show>false</Show>
<ColorWriteFlags>7</ColorWriteFlags>
<ClassOverride>CXuiCtrlCraftIngredientSlot</ClassOverride>
<Visual>ItemIconBlank</Visual>
</Properties>
</XuiLabel>
<XuiLabel>
<Properties>
<Id>Iron</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>214.000000,248.000000,0.000000</Position>
<Anchor>4</Anchor>
<Show>false</Show>
<ColorWriteFlags>7</ColorWriteFlags>
<ClassOverride>CXuiCtrlCraftIngredientSlot</ClassOverride>
<Visual>ItemIconBlank</Visual>
</Properties>
</XuiLabel>
<XuiControl>
<Properties>
<Id>Beacon_1</Id>
<Width>40.000000</Width>
<Height>40.000000</Height>
<Position>50.000000,68.000000,0.000000</Position>
<Anchor>2</Anchor>
<Visual>Beacon_1</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>Beacon_2</Id>
<Width>40.000000</Width>
<Height>40.000000</Height>
<Position>50.000000,122.000000,0.000000</Position>
<Anchor>2</Anchor>
<Visual>Beacon_2</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>Beacon_3</Id>
<Width>40.000000</Width>
<Height>40.000000</Height>
<Position>50.000000,176.000000,0.000000</Position>
<Anchor>2</Anchor>
<Visual>Beacon_3</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>Beacon_4</Id>
<Width>40.000000</Width>
<Height>40.000000</Height>
<Position>358.000000,94.000000,0.000000</Position>
<Anchor>2</Anchor>
<Visual>Beacon_4</Visual>
<Enabled>false</Enabled>
</Properties>
</XuiControl>
<XuiControl>
<Properties>
<Id>Pointer</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>-185.000000,-9.000015,0.000000</Position>
<Anchor>9</Anchor>
<Show>false</Show>
<ClassOverride>CXuiCtrlSlotItem</ClassOverride>
<Visual>ItemPointer</Visual>
</Properties>
</XuiControl>
<Timelines>
<NamedFrames>
<NamedFrame>
<Name>Normal</Name>
<Time>0</Time>
</NamedFrame>
<NamedFrame>
<Name>EndNormal</Name>
<Time>1</Time>
</NamedFrame>
</NamedFrames>
</Timelines>
</XuiScene>
<Timelines>
<NamedFrames>
<NamedFrame>
<Name>Normal</Name>
<Time>0</Time>
</NamedFrame>
<NamedFrame>
<Name>EndNormal</Name>
<Time>1</Time>
<Command>stop</Command>
</NamedFrame>
<NamedFrame>
<Name>MoveLeft</Name>
<Time>2</Time>
</NamedFrame>
<NamedFrame>
<Name>EndMoveLeft</Name>
<Time>32</Time>
<Command>stop</Command>
</NamedFrame>
<NamedFrame>
<Name>MoveRight</Name>
<Time>33</Time>
</NamedFrame>
<NamedFrame>
<Name>EndMoveRight</Name>
<Time>78</Time>
<Command>gotoandstop</Command>
<CommandParams>EndNormal</CommandParams>
</NamedFrame>
</NamedFrames>
<Timeline>
<Id>Group</Id>
<TimelineProp>Position</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>380.000031,120.000046,0.000000</Prop>
</KeyFrame>
<KeyFrame>
<Time>1</Time>
<Interpolation>0</Interpolation>
<Prop>380.000000,120.000000,0.000000</Prop>
</KeyFrame>
<KeyFrame>
<Time>2</Time>
<Interpolation>2</Interpolation>
<EaseIn>100</EaseIn>
<EaseOut>-100</EaseOut>
<EaseScale>50</EaseScale>
<Prop>380.000000,120.000000,0.000000</Prop>
</KeyFrame>
<KeyFrame>
<Time>32</Time>
<Interpolation>0</Interpolation>
<Prop>120.000000,120.000000,0.000000</Prop>
</KeyFrame>
<KeyFrame>
<Time>48</Time>
<Interpolation>2</Interpolation>
<EaseIn>100</EaseIn>
<EaseOut>-100</EaseOut>
<EaseScale>50</EaseScale>
<Prop>120.000000,120.000000,0.000000</Prop>
</KeyFrame>
<KeyFrame>
<Time>78</Time>
<Interpolation>0</Interpolation>
<Prop>380.000000,120.000000,0.000000</Prop>
</KeyFrame>
</Timeline>
</Timelines>
</XuiScene>
</XuiCanvas>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -1,36 +1,26 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>NewUpdate</Id> <Id>NewUpdate</Id>
<Width>800.000000</Width> <Width>800.000000</Width>
<Height>430.000000</Height> <Height>430.000000</Height>
<Position>240.000046,200.000000,0.000000</Position> <Position>240.000046,200.000000,0.000000</Position>
<ClassOverride>CScene_NewUpdateMessage</ClassOverride> <ClassOverride>CScene_NewUpdateMessage</ClassOverride>
<Visual>XuiScene</Visual> <Visual>XuiScene</Visual>
<DefaultFocus>OffersList</DefaultFocus> <DefaultFocus>OffersList</DefaultFocus>
</Properties> </Properties>
<XuiHtmlControl> <XuiHtmlControl>
<Properties> <Properties>
<Id>XuiHTMLMessage</Id> <Id>XuiHTMLMessage</Id>
<Width>744.000000</Width> <Width>744.000000</Width>
<Height>364.000000</Height> <Height>364.000000</Height>
<Position>28.000034,24.000000,0.000000</Position> <Position>28.000034,24.000000,0.000000</Position>
<Visual>XuiHtmlControl</Visual> <Visual>XuiHtmlControl</Visual>
</Properties> </Properties>
</XuiHtmlControl> </XuiHtmlControl>
</XuiScene> </XuiScene>
<XuiControl>
<Properties>
<Id>Logo</Id>
<Width>1280.000000</Width>
<Height>138.000000</Height>
<Position>0.000000,56.000000,0.000000</Position>
<DesignTime>true</DesignTime>
<Visual>MenuTitleLogo</Visual>
</Properties>
</XuiControl>
</XuiCanvas> </XuiCanvas>
@@ -1,37 +1,27 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>NewUpdate</Id> <Id>NewUpdate</Id>
<Width>500.000000</Width> <Width>500.000000</Width>
<Height>286.000000</Height> <Height>286.000000</Height>
<Position>70.000000,124.000046,0.000000</Position> <Position>70.000000,124.000046,0.000000</Position>
<ClassOverride>CScene_NewUpdateMessage</ClassOverride> <ClassOverride>CScene_NewUpdateMessage</ClassOverride>
<Visual>GraphicPanel</Visual> <Visual>GraphicPanel</Visual>
<DefaultFocus>OffersList</DefaultFocus> <DefaultFocus>OffersList</DefaultFocus>
</Properties> </Properties>
<XuiHtmlControl> <XuiHtmlControl>
<Properties> <Properties>
<Id>XuiHTMLMessage</Id> <Id>XuiHTMLMessage</Id>
<Width>470.000000</Width> <Width>470.000000</Width>
<Height>239.000000</Height> <Height>239.000000</Height>
<Position>16.000000,20.000000,0.000000</Position> <Position>16.000000,20.000000,0.000000</Position>
<Show>false</Show> <Show>false</Show>
<Visual>XuiHtmlControl</Visual> <Visual>XuiHtmlControl</Visual>
</Properties> </Properties>
</XuiHtmlControl> </XuiHtmlControl>
</XuiScene> </XuiScene>
<XuiControl>
<Properties>
<Id>Logo</Id>
<Width>640.000000</Width>
<Height>70.000000</Height>
<Position>0.000000,48.000000,0.000000</Position>
<DesignTime>true</DesignTime>
<Visual>MenuTitleLogo</Visual>
</Properties>
</XuiControl>
</XuiCanvas> </XuiCanvas>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+224 -224
View File
@@ -1,226 +1,226 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>ChatScene</Id> <Id>ChatScene</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
<DisableFocusRecursion>true</DisableFocusRecursion> <DisableFocusRecursion>true</DisableFocusRecursion>
<ClassOverride>CScene_Chat</ClassOverride> <ClassOverride>CScene_Chat</ClassOverride>
<Visual>XuiBlankScene</Visual> <Visual>XuiBlankScene</Visual>
</Properties> </Properties>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack1</Id> <Id>XuiBack1</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,472.000000,0.000000</Position> <Position>0.000000,472.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel1</Id> <Id>XuiLabel1</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,472.000000,0.000000</Position> <Position>0.000000,472.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChat</Visual> <Visual>XuiLabelChat</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack2</Id> <Id>XuiBack2</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,437.000000,0.000000</Position> <Position>0.000000,437.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel2</Id> <Id>XuiLabel2</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,437.000000,0.000000</Position> <Position>0.000000,437.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChat</Visual> <Visual>XuiLabelChat</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack3</Id> <Id>XuiBack3</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,402.000000,0.000000</Position> <Position>0.000000,402.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel3</Id> <Id>XuiLabel3</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,402.000000,0.000000</Position> <Position>0.000000,402.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChat</Visual> <Visual>XuiLabelChat</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack4</Id> <Id>XuiBack4</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,367.000000,0.000000</Position> <Position>0.000000,367.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel4</Id> <Id>XuiLabel4</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,367.000000,0.000000</Position> <Position>0.000000,367.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChat</Visual> <Visual>XuiLabelChat</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack5</Id> <Id>XuiBack5</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,332.000000,0.000000</Position> <Position>0.000000,332.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel5</Id> <Id>XuiLabel5</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,332.000000,0.000000</Position> <Position>0.000000,332.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChat</Visual> <Visual>XuiLabelChat</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack6</Id> <Id>XuiBack6</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,297.000000,0.000000</Position> <Position>0.000000,297.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel6</Id> <Id>XuiLabel6</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,297.000000,0.000000</Position> <Position>0.000000,297.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChat</Visual> <Visual>XuiLabelChat</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack7</Id> <Id>XuiBack7</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,262.000000,0.000000</Position> <Position>0.000000,262.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel7</Id> <Id>XuiLabel7</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,262.000000,0.000000</Position> <Position>0.000000,262.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChat</Visual> <Visual>XuiLabelChat</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack8</Id> <Id>XuiBack8</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,227.000000,0.000000</Position> <Position>0.000000,227.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel8</Id> <Id>XuiLabel8</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,227.000000,0.000000</Position> <Position>0.000000,227.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChat</Visual> <Visual>XuiLabelChat</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack9</Id> <Id>XuiBack9</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,192.000000,0.000000</Position> <Position>0.000000,192.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel9</Id> <Id>XuiLabel9</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,192.000000,0.000000</Position> <Position>0.000000,192.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChat</Visual> <Visual>XuiLabelChat</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack10</Id> <Id>XuiBack10</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,157.000000,0.000000</Position> <Position>0.000000,157.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel10</Id> <Id>XuiLabel10</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>0.000000,157.000000,0.000000</Position> <Position>0.000000,157.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelChat</Visual> <Visual>XuiLabelChat</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabelJukebox</Id> <Id>XuiLabelJukebox</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>35.000000</Height> <Height>35.000000</Height>
<Position>320.000031,472.000000,0.000000</Position> <Position>320.000031,472.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Visual>XuiLabelListening</Visual> <Visual>XuiLabelListening</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,247 +1,247 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>ChatScene</Id> <Id>ChatScene</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
<DisableFocusRecursion>true</DisableFocusRecursion> <DisableFocusRecursion>true</DisableFocusRecursion>
<ClassOverride>CScene_Chat</ClassOverride> <ClassOverride>CScene_Chat</ClassOverride>
<Visual>XuiBlankScene</Visual> <Visual>XuiBlankScene</Visual>
</Properties> </Properties>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack1</Id> <Id>XuiBack1</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,325.000000,0.000000</Position> <Position>0.000000,325.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel1</Id> <Id>XuiLabel1</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,325.000000,0.000000</Position> <Position>0.000000,325.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack2</Id> <Id>XuiBack2</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,305.000000,0.000000</Position> <Position>0.000000,305.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel2</Id> <Id>XuiLabel2</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,305.000000,0.000000</Position> <Position>0.000000,305.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack3</Id> <Id>XuiBack3</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,285.000000,0.000000</Position> <Position>0.000000,285.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel3</Id> <Id>XuiLabel3</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,285.000000,0.000000</Position> <Position>0.000000,285.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack4</Id> <Id>XuiBack4</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,265.000000,0.000000</Position> <Position>0.000000,265.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel4</Id> <Id>XuiLabel4</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,265.000000,0.000000</Position> <Position>0.000000,265.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack5</Id> <Id>XuiBack5</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,245.000000,0.000000</Position> <Position>0.000000,245.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel5</Id> <Id>XuiLabel5</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,245.000000,0.000000</Position> <Position>0.000000,245.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack6</Id> <Id>XuiBack6</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,225.000000,0.000000</Position> <Position>0.000000,225.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel6</Id> <Id>XuiLabel6</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,225.000000,0.000000</Position> <Position>0.000000,225.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack7</Id> <Id>XuiBack7</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,205.000015,0.000000</Position> <Position>0.000000,205.000015,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel7</Id> <Id>XuiLabel7</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,205.000015,0.000000</Position> <Position>0.000000,205.000015,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack8</Id> <Id>XuiBack8</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,185.000015,0.000000</Position> <Position>0.000000,185.000015,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel8</Id> <Id>XuiLabel8</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,185.000015,0.000000</Position> <Position>0.000000,185.000015,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack9</Id> <Id>XuiBack9</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,165.000015,0.000000</Position> <Position>0.000000,165.000015,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel9</Id> <Id>XuiLabel9</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,165.000015,0.000000</Position> <Position>0.000000,165.000015,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack10</Id> <Id>XuiBack10</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,145.000015,0.000000</Position> <Position>0.000000,145.000015,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel10</Id> <Id>XuiLabel10</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,145.000015,0.000000</Position> <Position>0.000000,145.000015,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabelJukebox</Id> <Id>XuiLabelJukebox</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000031,325.000000,0.000000</Position> <Position>0.000031,325.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelListening_Small</Visual> <Visual>XuiLabelListening_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,247 +1,247 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>ChatScene</Id> <Id>ChatScene</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
<DisableFocusRecursion>true</DisableFocusRecursion> <DisableFocusRecursion>true</DisableFocusRecursion>
<ClassOverride>CScene_Chat</ClassOverride> <ClassOverride>CScene_Chat</ClassOverride>
<Visual>XuiBlankScene</Visual> <Visual>XuiBlankScene</Visual>
</Properties> </Properties>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack1</Id> <Id>XuiBack1</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,215.000000,0.000000</Position> <Position>0.000000,215.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel1</Id> <Id>XuiLabel1</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,215.000000,0.000000</Position> <Position>0.000000,215.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack2</Id> <Id>XuiBack2</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,195.000000,0.000000</Position> <Position>0.000000,195.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel2</Id> <Id>XuiLabel2</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,195.000000,0.000000</Position> <Position>0.000000,195.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack3</Id> <Id>XuiBack3</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,175.000000,0.000000</Position> <Position>0.000000,175.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel3</Id> <Id>XuiLabel3</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,175.000000,0.000000</Position> <Position>0.000000,175.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack4</Id> <Id>XuiBack4</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,155.000000,0.000000</Position> <Position>0.000000,155.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel4</Id> <Id>XuiLabel4</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,155.000000,0.000000</Position> <Position>0.000000,155.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack5</Id> <Id>XuiBack5</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,135.000000,0.000000</Position> <Position>0.000000,135.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel5</Id> <Id>XuiLabel5</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,135.000000,0.000000</Position> <Position>0.000000,135.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack6</Id> <Id>XuiBack6</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,115.000008,0.000000</Position> <Position>0.000000,115.000008,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel6</Id> <Id>XuiLabel6</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,115.000008,0.000000</Position> <Position>0.000000,115.000008,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack7</Id> <Id>XuiBack7</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,95.000008,0.000000</Position> <Position>0.000000,95.000008,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel7</Id> <Id>XuiLabel7</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,95.000008,0.000000</Position> <Position>0.000000,95.000008,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack8</Id> <Id>XuiBack8</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,75.000008,0.000000</Position> <Position>0.000000,75.000008,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel8</Id> <Id>XuiLabel8</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,75.000008,0.000000</Position> <Position>0.000000,75.000008,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack9</Id> <Id>XuiBack9</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,55.000008,0.000000</Position> <Position>0.000000,55.000008,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel9</Id> <Id>XuiLabel9</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,55.000008,0.000000</Position> <Position>0.000000,55.000008,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiBack10</Id> <Id>XuiBack10</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,35.000008,0.000000</Position> <Position>0.000000,35.000008,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChatBackground</Visual> <Visual>XuiLabelChatBackground</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel10</Id> <Id>XuiLabel10</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000000,35.000008,0.000000</Position> <Position>0.000000,35.000008,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelChat_Small</Visual> <Visual>XuiLabelChat_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabelJukebox</Id> <Id>XuiLabelJukebox</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>20.000000</Height> <Height>20.000000</Height>
<Position>0.000031,215.000000,0.000000</Position> <Position>0.000031,215.000000,0.000000</Position>
<Opacity>0.000000</Opacity> <Opacity>0.000000</Opacity>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Visual>XuiLabelListening_Small</Visual> <Visual>XuiLabelListening_Small</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,923 +1,68 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>ConnectingProgressScene</Id> <Id>ConnectingProgressScene</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
<ClassOverride>CScene_ConnectingProgress</ClassOverride> <ClassOverride>CScene_ConnectingProgress</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>ButtonConfirm</DefaultFocus> <DefaultFocus>ButtonConfirm</DefaultFocus>
</Properties> </Properties>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Status</Id> <Id>Status</Id>
<Width>383.000000</Width> <Width>383.000000</Width>
<Height>26.000000</Height> <Height>26.000000</Height>
<Position>319.000000,360.000000,0.000000</Position> <Position>319.000000,360.000000,0.000000</Position>
<Visual>XuiLabel</Visual> <Visual>XuiLabel</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Title</Id> <Id>Title</Id>
<Width>700.000000</Width> <Width>700.000000</Width>
<Height>100.000000</Height> <Height>100.000000</Height>
<Position>290.000061,250.000000,0.000000</Position> <Position>290.000061,250.000000,0.000000</Position>
<Visual>XuiTitle</Visual> <Visual>XuiTitle</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiProgressBar> <XuiProgressBar>
<Properties> <Properties>
<Id>Progress</Id> <Id>Progress</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>15.000000</Height> <Height>15.000000</Height>
<Position>320.000000,390.000000,0.000000</Position> <Position>320.000000,390.000000,0.000000</Position>
<Show>false</Show> <Show>false</Show>
<ClassOverride>CXuiCtrlLoadingProgress</ClassOverride> <ClassOverride>CXuiCtrlLoadingProgress</ClassOverride>
<Visual>LoadingProgressState</Visual> <Visual>LoadingProgressState</Visual>
<Value>50</Value> <Value>50</Value>
</Properties> </Properties>
</XuiProgressBar> </XuiProgressBar>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>Timer</Id> <Id>Timer</Id>
<Width>183.000000</Width> <Width>183.000000</Width>
<Height>169.000000</Height> <Height>169.000000</Height>
<Position>548.500061,330.000000,0.000000</Position> <Position>548.500061,330.000000,0.000000</Position>
<Visual>XuiBlankScene</Visual> <Visual>XuiBlankScene</Visual>
</Properties> </Properties>
<XuiFigure> <XuiFigure>
<Properties> <Properties>
<Id>Timer_Square_1</Id> <Id>Timer_Square_1</Id>
<Width>42.000000</Width> <Width>42.000000</Width>
<Height>42.000000</Height> <Height>42.000000</Height>
<Position>14.000000,3.000000,0.000000</Position> <Position>14.000000,3.000000,0.000000</Position>
<Stroke> <Closed>false</Closed>
<Properties> <Stroke>
<StrokeColor>0xff0f0f80</StrokeColor> </Stroke>
</Properties> <Fill>
</Stroke> </Fill>
<Fill> </Properties>
<Properties> </XuiFigure>
<FillColor>0x00ebebeb</FillColor> </XuiScene>
<Gradient> </XuiScene>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_2</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>68.499985,3.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_3</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>123.000000,3.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_4</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>123.000000,58.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_5</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>123.000000,113.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_6</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>68.499985,113.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_7</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>14.000000,113.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_8</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>14.000000,58.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_9</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>14.000000,3.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_10</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>68.499985,3.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_11</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>123.000000,3.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_12</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>123.000000,58.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_13</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>123.000000,113.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_14</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>68.499985,113.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_15</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>14.000000,113.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_16</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>14.000000,58.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<Timelines>
<NamedFrames>
<NamedFrame>
<Name>LoadStart</Name>
<Time>0</Time>
</NamedFrame>
<NamedFrame>
<Name>LoopStart</Name>
<Time>81</Time>
</NamedFrame>
<NamedFrame>
<Name>LoopEnd</Name>
<Time>160</Time>
<Command>gotoandplay</Command>
<CommandParams>LoopStart</CommandParams>
</NamedFrame>
</NamedFrames>
<Timeline>
<Id>Timer_Square_1</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>1</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>31</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_3</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>20</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>21</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>51</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_8</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>70</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>71</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>101</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_4</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>30</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>31</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>61</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_7</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>60</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>61</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>91</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_6</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>50</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>51</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>81</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_5</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>40</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>41</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>71</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_2</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>10</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>11</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>41</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_9</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>80</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>81</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>111</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_10</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>90</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>91</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>121</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_11</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>100</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>101</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>131</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_12</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>110</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>111</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>141</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_13</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>120</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>121</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>151</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_14</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>130</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>131</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>160</Time>
<Interpolation>0</Interpolation>
<Prop>0x07ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_15</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>140</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>141</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>160</Time>
<Interpolation>0</Interpolation>
<Prop>0x49ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_16</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>150</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>151</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>160</Time>
<Interpolation>0</Interpolation>
<Prop>0x8cebebeb</Prop>
</KeyFrame>
</Timeline>
</Timelines>
</XuiScene>
<XuiButton>
<Properties>
<Id>ButtonConfirm</Id>
<Width>320.000000</Width>
<Height>50.000000</Height>
<Position>480.000031,530.000000,0.000000</Position>
<Show>false</Show>
</Properties>
</XuiButton>
<Timelines>
<NamedFrames>
<NamedFrame>
<Name>Normal</Name>
<Time>0</Time>
</NamedFrame>
<NamedFrame>
<Name>EndNormal</Name>
<Time>40</Time>
<Command>gotoandplay</Command>
<CommandParams>Normal</CommandParams>
</NamedFrame>
</NamedFrames>
</Timelines>
</XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,923 +1,78 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>ConnectingProgressScene</Id> <Id>ConnectingProgressScene</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
<ClassOverride>CScene_ConnectingProgress</ClassOverride> <ClassOverride>CScene_ConnectingProgress</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>ButtonConfirm</DefaultFocus> <DefaultFocus>ButtonConfirm</DefaultFocus>
</Properties> </Properties>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Status</Id> <Id>Status</Id>
<Width>383.000000</Width> <Width>383.000000</Width>
<Height>26.000000</Height> <Height>26.000000</Height>
<Position>70.000000,232.666656,0.000000</Position> <Position>70.000000,232.666656,0.000000</Position>
<Visual>XuiLabel</Visual> <Visual>XuiLabel</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Title</Id> <Id>Title</Id>
<Width>500.000000</Width> <Width>500.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>70.000015,130.000000,0.000000</Position> <Position>70.000015,130.000000,0.000000</Position>
<Visual>XuiTitleSmall</Visual> <Visual>XuiTitleSmall</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiProgressBar> <XuiProgressBar>
<Properties> <Properties>
<Id>Progress</Id> <Id>Progress</Id>
<Width>500.000000</Width> <Width>500.000000</Width>
<Height>15.000000</Height> <Height>15.000000</Height>
<Position>70.000046,259.000000,0.000000</Position> <Position>70.000046,259.000000,0.000000</Position>
<Show>false</Show> <Show>false</Show>
<ClassOverride>CXuiCtrlLoadingProgress</ClassOverride> <ClassOverride>CXuiCtrlLoadingProgress</ClassOverride>
<Visual>LoadingProgressState</Visual> <Visual>LoadingProgressState</Visual>
<Value>50</Value> <Value>50</Value>
</Properties> </Properties>
</XuiProgressBar> </XuiProgressBar>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ButtonConfirm</Id> <Id>ButtonConfirm</Id>
<Width>160.000000</Width> <Width>160.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>240.000000,348.000000,0.000000</Position> <Position>240.000000,348.000000,0.000000</Position>
<Show>false</Show> <Show>false</Show>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>Timer</Id> <Id>Timer</Id>
<Width>72.000000</Width> <Width>72.000000</Width>
<Height>72.000000</Height> <Height>72.000000</Height>
<Position>284.000000,177.000000,0.000000</Position> <Position>284.000000,177.000000,0.000000</Position>
<Anchor>15</Anchor> <Anchor>15</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiBlankScene</Visual> <Visual>XuiBlankScene</Visual>
</Properties> </Properties>
<XuiFigure> <XuiFigure>
<Properties> <Properties>
<Id>Timer_Square_1</Id> <Id>Timer_Square_1</Id>
<Width>21.000000</Width> <Width>21.000000</Width>
<Height>21.000000</Height> <Height>21.000000</Height>
<Stroke> <Closed>false</Closed>
<Properties> <Stroke>
<StrokeColor>0xff0f0f80</StrokeColor> </Stroke>
</Properties> <Fill>
</Stroke> </Fill>
<Fill> </Properties>
<Properties> </XuiFigure>
<FillColor>0x00ebebeb</FillColor> </XuiScene>
<Gradient> </XuiScene>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_2</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>25.000000,0.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_3</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>50.000000,0.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_4</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>50.000000,25.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_5</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>50.000000,50.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_6</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>25.000000,50.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_7</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>0.000000,50.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_8</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>0.000000,25.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_9</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_10</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>25.000000,0.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_11</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>50.000000,0.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_12</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>50.000000,25.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_13</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>50.000000,50.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_14</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>25.000000,50.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_15</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>0.000000,50.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_16</Id>
<Width>21.000000</Width>
<Height>21.000000</Height>
<Position>0.000000,25.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<Timelines>
<NamedFrames>
<NamedFrame>
<Name>LoadStart</Name>
<Time>0</Time>
</NamedFrame>
<NamedFrame>
<Name>LoopStart</Name>
<Time>81</Time>
</NamedFrame>
<NamedFrame>
<Name>LoopEnd</Name>
<Time>160</Time>
<Command>gotoandplay</Command>
<CommandParams>LoopStart</CommandParams>
</NamedFrame>
</NamedFrames>
<Timeline>
<Id>Timer_Square_1</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>1</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>31</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_3</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>20</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>21</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>51</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_8</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>70</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>71</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>101</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_4</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>30</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>31</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>61</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_7</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>60</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>61</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>91</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_6</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>50</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>51</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>81</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_5</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>40</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>41</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>71</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_2</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>10</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>11</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>41</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_9</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>80</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>81</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>111</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_10</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>90</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>91</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>121</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_11</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>100</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>101</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>131</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_12</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>110</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>111</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>141</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_13</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>120</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>121</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>151</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_14</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>130</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>131</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>160</Time>
<Interpolation>0</Interpolation>
<Prop>0x07ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_15</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>140</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>141</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>160</Time>
<Interpolation>0</Interpolation>
<Prop>0x49ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_16</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>150</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>151</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>160</Time>
<Interpolation>0</Interpolation>
<Prop>0x8cebebeb</Prop>
</KeyFrame>
</Timeline>
</Timelines>
</XuiScene>
<Timelines>
<NamedFrames>
<NamedFrame>
<Name>Normal</Name>
<Time>0</Time>
</NamedFrame>
<NamedFrame>
<Name>EndNormal</Name>
<Time>40</Time>
<Command>gotoandplay</Command>
<CommandParams>Normal</CommandParams>
</NamedFrame>
</NamedFrames>
</Timelines>
</XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,923 +1,68 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>ConnectingProgressScene</Id> <Id>ConnectingProgressScene</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
<ClassOverride>CScene_ConnectingProgress</ClassOverride> <ClassOverride>CScene_ConnectingProgress</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>ButtonConfirm</DefaultFocus> <DefaultFocus>ButtonConfirm</DefaultFocus>
</Properties> </Properties>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Status</Id> <Id>Status</Id>
<Width>383.000000</Width> <Width>383.000000</Width>
<Height>26.000000</Height> <Height>26.000000</Height>
<Position>70.000000,194.666656,0.000000</Position> <Position>70.000000,194.666656,0.000000</Position>
<Visual>XuiLabel</Visual> <Visual>XuiLabel</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Title</Id> <Id>Title</Id>
<Width>500.000000</Width> <Width>500.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>70.000015,120.000000,0.000000</Position> <Position>70.000015,120.000000,0.000000</Position>
<Visual>XuiTitleSmall</Visual> <Visual>XuiTitleSmall</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiProgressBar> <XuiProgressBar>
<Properties> <Properties>
<Id>Progress</Id> <Id>Progress</Id>
<Width>500.000000</Width> <Width>500.000000</Width>
<Height>15.000000</Height> <Height>15.000000</Height>
<Position>70.000046,221.000000,0.000000</Position> <Position>70.000046,221.000000,0.000000</Position>
<Show>false</Show> <Show>false</Show>
<ClassOverride>CXuiCtrlLoadingProgress</ClassOverride> <ClassOverride>CXuiCtrlLoadingProgress</ClassOverride>
<Visual>LoadingProgressState</Visual> <Visual>LoadingProgressState</Visual>
<Value>50</Value> <Value>50</Value>
</Properties> </Properties>
</XuiProgressBar> </XuiProgressBar>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>Timer</Id> <Id>Timer</Id>
<Width>91.000000</Width> <Width>91.000000</Width>
<Height>84.000000</Height> <Height>84.000000</Height>
<Position>275.000000,174.000000,0.000000</Position> <Position>275.000000,174.000000,0.000000</Position>
<Visual>XuiBlankScene</Visual> <Visual>XuiBlankScene</Visual>
</Properties> </Properties>
<XuiFigure> <XuiFigure>
<Properties> <Properties>
<Id>Timer_Square_1</Id> <Id>Timer_Square_1</Id>
<Width>42.000000</Width> <Width>42.000000</Width>
<Height>42.000000</Height> <Height>42.000000</Height>
<Position>-29.999992,-9.000000,0.000000</Position> <Position>-29.999992,-9.000000,0.000000</Position>
<Stroke> <Closed>false</Closed>
<Properties> <Stroke>
<StrokeColor>0xff0f0f80</StrokeColor> </Stroke>
</Properties> <Fill>
</Stroke> </Fill>
<Fill> </Properties>
<Properties> </XuiFigure>
<FillColor>0x00ebebeb</FillColor> </XuiScene>
<Gradient> </XuiScene>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_2</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>24.499992,-9.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_3</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>79.000008,-9.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_4</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>79.000008,46.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_5</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>79.000008,101.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_6</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>24.499992,101.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_7</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>-29.999992,101.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_8</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>-29.999992,46.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_9</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>-29.999992,-9.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_10</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>24.499992,-9.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_11</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>79.000008,-9.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_12</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>79.000008,46.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_13</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>79.000008,101.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_14</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>24.499992,101.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_15</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>-29.999992,101.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<XuiFigure>
<Properties>
<Id>Timer_Square_16</Id>
<Width>42.000000</Width>
<Height>42.000000</Height>
<Position>-29.999992,46.000000,0.000000</Position>
<Stroke>
<Properties>
<StrokeColor>0xff0f0f80</StrokeColor>
</Properties>
</Stroke>
<Fill>
<Properties>
<FillColor>0x00ebebeb</FillColor>
<Gradient>
<Properties>
<NumStops>1</NumStops>
<StopColor index="0">0x00000000</StopColor>
<StopPos index="0">0.000000</StopPos>
</Properties>
</Gradient>
<TransformVersion>1</TransformVersion>
</Properties>
</Fill>
<Closed>true</Closed>
<Points>4,0.000000,0.000000,0.000000,0.000000,42.000000,0.000000,0,42.000000,0.000000,42.000000,0.000000,42.000000,42.000000,0,42.000000,42.000000,42.000000,42.000000,0.000000,42.000000,0,0.000000,42.000000,0.000000,42.000000,0.000000,0.000000,0,</Points>
</Properties>
</XuiFigure>
<Timelines>
<NamedFrames>
<NamedFrame>
<Name>LoadStart</Name>
<Time>0</Time>
</NamedFrame>
<NamedFrame>
<Name>LoopStart</Name>
<Time>81</Time>
</NamedFrame>
<NamedFrame>
<Name>LoopEnd</Name>
<Time>160</Time>
<Command>gotoandplay</Command>
<CommandParams>LoopStart</CommandParams>
</NamedFrame>
</NamedFrames>
<Timeline>
<Id>Timer_Square_1</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>1</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>31</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_3</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>20</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>21</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>51</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_8</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>70</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>71</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>101</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_4</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>30</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>31</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>61</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_7</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>60</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>61</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>91</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_6</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>50</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>51</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>81</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_5</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>40</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>41</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>71</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_2</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>10</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>11</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>41</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_9</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>80</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>81</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>111</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_10</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>90</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>91</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>121</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_11</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>100</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>101</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>131</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_12</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>110</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>111</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>141</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_13</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>120</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>121</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>151</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_14</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>130</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>131</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>160</Time>
<Interpolation>0</Interpolation>
<Prop>0x07ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_15</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>140</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>141</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>160</Time>
<Interpolation>0</Interpolation>
<Prop>0x49ebebeb</Prop>
</KeyFrame>
</Timeline>
<Timeline>
<Id>Timer_Square_16</Id>
<TimelineProp>Fill.FillColor</TimelineProp>
<KeyFrame>
<Time>0</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>150</Time>
<Interpolation>0</Interpolation>
<Prop>0x00ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>151</Time>
<Interpolation>0</Interpolation>
<Prop>0xc8ebebeb</Prop>
</KeyFrame>
<KeyFrame>
<Time>160</Time>
<Interpolation>0</Interpolation>
<Prop>0x8cebebeb</Prop>
</KeyFrame>
</Timeline>
</Timelines>
</XuiScene>
<XuiButton>
<Properties>
<Id>ButtonConfirm</Id>
<Width>160.000000</Width>
<Height>25.000000</Height>
<Position>240.000000,267.000000,0.000000</Position>
<Show>false</Show>
</Properties>
</XuiButton>
<Timelines>
<NamedFrames>
<NamedFrame>
<Name>Normal</Name>
<Time>0</Time>
</NamedFrame>
<NamedFrame>
<Name>EndNormal</Name>
<Time>40</Time>
<Command>gotoandplay</Command>
<CommandParams>Normal</CommandParams>
</NamedFrame>
</NamedFrames>
</Timelines>
</XuiScene>
</XuiCanvas> </XuiCanvas>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+283 -283
View File
@@ -1,285 +1,285 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneCredits</Id> <Id>SceneCredits</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
<ClassOverride>CScene_Credits</ClassOverride> <ClassOverride>CScene_Credits</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>XuiSliderVolume</DefaultFocus> <DefaultFocus>XuiSliderVolume</DefaultFocus>
</Properties> </Properties>
<XuiControl> <XuiControl>
<Properties> <Properties>
<Id>Background</Id> <Id>Background</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
<Visual>CreditsBackground</Visual> <Visual>CreditsBackground</Visual>
</Properties> </Properties>
</XuiControl> </XuiControl>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText1</Id> <Id>XuiText1</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_XL</Visual> <Visual>XuiCreditsText_XL</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText2</Id> <Id>XuiText2</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_XL</Visual> <Visual>XuiCreditsText_XL</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText3</Id> <Id>XuiText3</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_XL</Visual> <Visual>XuiCreditsText_XL</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText4</Id> <Id>XuiText4</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_L</Visual> <Visual>XuiCreditsText_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText5</Id> <Id>XuiText5</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_L</Visual> <Visual>XuiCreditsText_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText6</Id> <Id>XuiText6</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_L</Visual> <Visual>XuiCreditsText_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText7</Id> <Id>XuiText7</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_L</Visual> <Visual>XuiCreditsText_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText8</Id> <Id>XuiText8</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_L</Visual> <Visual>XuiCreditsText_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText9</Id> <Id>XuiText9</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_M</Visual> <Visual>XuiCreditsText_M</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText10</Id> <Id>XuiText10</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_L</Visual> <Visual>XuiCreditsText_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText11</Id> <Id>XuiText11</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_L</Visual> <Visual>XuiCreditsText_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText12</Id> <Id>XuiText12</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_L</Visual> <Visual>XuiCreditsText_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText13</Id> <Id>XuiText13</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_L</Visual> <Visual>XuiCreditsText_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText14</Id> <Id>XuiText14</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText15</Id> <Id>XuiText15</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText16</Id> <Id>XuiText16</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText17</Id> <Id>XuiText17</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText18</Id> <Id>XuiText18</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText19</Id> <Id>XuiText19</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText20</Id> <Id>XuiText20</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText21</Id> <Id>XuiText21</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText22</Id> <Id>XuiText22</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText23</Id> <Id>XuiText23</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText24</Id> <Id>XuiText24</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText25</Id> <Id>XuiText25</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText26</Id> <Id>XuiText26</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText27</Id> <Id>XuiText27</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText28</Id> <Id>XuiText28</Id>
<Width>1279.000000</Width> <Width>1279.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>1.000000,16.000000,0.000000</Position> <Position>1.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_S</Visual> <Visual>XuiCreditsText_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiControl> <XuiControl>
<Properties> <Properties>
<Id>Logo</Id> <Id>Logo</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>138.000000</Height> <Height>138.000000</Height>
<Position>0.000000,56.000000,0.000000</Position> <Position>0.000000,56.000000,0.000000</Position>
<Visual>MenuTitleLogo</Visual> <Visual>MenuTitleLogo</Visual>
</Properties> </Properties>
</XuiControl> </XuiControl>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,286 +1,286 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneCredits</Id> <Id>SceneCredits</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
<ClassOverride>CScene_Credits</ClassOverride> <ClassOverride>CScene_Credits</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>XuiSliderVolume</DefaultFocus> <DefaultFocus>XuiSliderVolume</DefaultFocus>
</Properties> </Properties>
<XuiControl> <XuiControl>
<Properties> <Properties>
<Id>Background</Id> <Id>Background</Id>
<Width>854.000000</Width> <Width>854.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
<Position>-107.000000,0.000000,0.000000</Position> <Position>-107.000000,0.000000,0.000000</Position>
<Visual>CreditsBackground</Visual> <Visual>CreditsBackground</Visual>
</Properties> </Properties>
</XuiControl> </XuiControl>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText1</Id> <Id>XuiText1</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_20_XL</Visual> <Visual>XuiCreditsText_480_20_XL</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText2</Id> <Id>XuiText2</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_20_XL</Visual> <Visual>XuiCreditsText_480_20_XL</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText3</Id> <Id>XuiText3</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_20_XL</Visual> <Visual>XuiCreditsText_480_20_XL</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText4</Id> <Id>XuiText4</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_14_L</Visual> <Visual>XuiCreditsText_480_14_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText5</Id> <Id>XuiText5</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_14_L</Visual> <Visual>XuiCreditsText_480_14_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText6</Id> <Id>XuiText6</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_14_L</Visual> <Visual>XuiCreditsText_480_14_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText7</Id> <Id>XuiText7</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_14_L</Visual> <Visual>XuiCreditsText_480_14_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText8</Id> <Id>XuiText8</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_14_L</Visual> <Visual>XuiCreditsText_480_14_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText9</Id> <Id>XuiText9</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_M</Visual> <Visual>XuiCreditsText_480_M</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText10</Id> <Id>XuiText10</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_14_L</Visual> <Visual>XuiCreditsText_480_14_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText11</Id> <Id>XuiText11</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_14_L</Visual> <Visual>XuiCreditsText_480_14_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText12</Id> <Id>XuiText12</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_14_L</Visual> <Visual>XuiCreditsText_480_14_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText13</Id> <Id>XuiText13</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_14_L</Visual> <Visual>XuiCreditsText_480_14_L</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText14</Id> <Id>XuiText14</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText15</Id> <Id>XuiText15</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText16</Id> <Id>XuiText16</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText17</Id> <Id>XuiText17</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText18</Id> <Id>XuiText18</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText19</Id> <Id>XuiText19</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText20</Id> <Id>XuiText20</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText21</Id> <Id>XuiText21</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText22</Id> <Id>XuiText22</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText23</Id> <Id>XuiText23</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText24</Id> <Id>XuiText24</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText25</Id> <Id>XuiText25</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText26</Id> <Id>XuiText26</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText27</Id> <Id>XuiText27</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiText28</Id> <Id>XuiText28</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>43.000000</Height> <Height>43.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Visual>XuiCreditsText_480_S</Visual> <Visual>XuiCreditsText_480_S</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiControl> <XuiControl>
<Properties> <Properties>
<Id>Logo</Id> <Id>Logo</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>70.000000</Height> <Height>70.000000</Height>
<Position>0.000000,48.000000,0.000000</Position> <Position>0.000000,48.000000,0.000000</Position>
<Visual>MenuTitleLogo</Visual> <Visual>MenuTitleLogo</Visual>
</Properties> </Properties>
</XuiControl> </XuiControl>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,49 +1,49 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneDeath</Id> <Id>SceneDeath</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
<ClassOverride>CScene_Death</ClassOverride> <ClassOverride>CScene_Death</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>Respawn</DefaultFocus> <DefaultFocus>Respawn</DefaultFocus>
</Properties> </Properties>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ExitGame</Id> <Id>ExitGame</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>440.000000,450.000000,0.000000</Position> <Position>440.000000,450.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L</Visual> <Visual>XuiMainMenuButton_L</Visual>
<NavUp>Respawn</NavUp> <NavUp>Respawn</NavUp>
<NavDown>Respawn</NavDown> <NavDown>Respawn</NavDown>
<PressKey>22528</PressKey> <PressKey>22528</PressKey>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>Respawn</Id> <Id>Respawn</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>440.000000,400.000000,0.000000</Position> <Position>440.000000,400.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L</Visual> <Visual>XuiMainMenuButton_L</Visual>
<NavUp>ExitGame</NavUp> <NavUp>ExitGame</NavUp>
<NavDown>ExitGame</NavDown> <NavDown>ExitGame</NavDown>
<PressKey>22528</PressKey> <PressKey>22528</PressKey>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Title</Id> <Id>Title</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Height>100.000000</Height> <Height>100.000000</Height>
<Position>440.000061,92.000000,0.000000</Position> <Position>440.000061,92.000000,0.000000</Position>
<Visual>XuiTitle</Visual> <Visual>XuiTitle</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,49 +1,49 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneDeath</Id> <Id>SceneDeath</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
<ClassOverride>CScene_Death</ClassOverride> <ClassOverride>CScene_Death</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>Respawn</DefaultFocus> <DefaultFocus>Respawn</DefaultFocus>
</Properties> </Properties>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ExitGame</Id> <Id>ExitGame</Id>
<Width>300.000000</Width> <Width>300.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>170.000031,340.000000,0.000000</Position> <Position>170.000031,340.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L_Thin</Visual> <Visual>XuiMainMenuButton_L_Thin</Visual>
<NavUp>Respawn</NavUp> <NavUp>Respawn</NavUp>
<NavDown>Respawn</NavDown> <NavDown>Respawn</NavDown>
<PressKey>22528</PressKey> <PressKey>22528</PressKey>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>Respawn</Id> <Id>Respawn</Id>
<Width>300.000000</Width> <Width>300.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>170.000031,300.000000,0.000000</Position> <Position>170.000031,300.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L_Thin</Visual> <Visual>XuiMainMenuButton_L_Thin</Visual>
<NavUp>ExitGame</NavUp> <NavUp>ExitGame</NavUp>
<NavDown>ExitGame</NavDown> <NavDown>ExitGame</NavDown>
<PressKey>22528</PressKey> <PressKey>22528</PressKey>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Title</Id> <Id>Title</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Height>100.000000</Height> <Height>100.000000</Height>
<Position>120.000061,150.000000,0.000000</Position> <Position>120.000061,150.000000,0.000000</Position>
<Visual>XuiTitle</Visual> <Visual>XuiTitle</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,49 +1,49 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneDeath</Id> <Id>SceneDeath</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
<ClassOverride>CScene_Death</ClassOverride> <ClassOverride>CScene_Death</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>Respawn</DefaultFocus> <DefaultFocus>Respawn</DefaultFocus>
</Properties> </Properties>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ExitGame</Id> <Id>ExitGame</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>120.000000,233.000000,0.000000</Position> <Position>120.000000,233.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L</Visual> <Visual>XuiMainMenuButton_L</Visual>
<NavUp>Respawn</NavUp> <NavUp>Respawn</NavUp>
<NavDown>Respawn</NavDown> <NavDown>Respawn</NavDown>
<PressKey>22528</PressKey> <PressKey>22528</PressKey>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>Respawn</Id> <Id>Respawn</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>120.000000,188.000000,0.000000</Position> <Position>120.000000,188.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L</Visual> <Visual>XuiMainMenuButton_L</Visual>
<NavUp>ExitGame</NavUp> <NavUp>ExitGame</NavUp>
<NavDown>ExitGame</NavDown> <NavDown>ExitGame</NavDown>
<PressKey>22528</PressKey> <PressKey>22528</PressKey>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Title</Id> <Id>Title</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Height>60.000000</Height> <Height>60.000000</Height>
<Position>120.000061,120.000000,0.000000</Position> <Position>120.000061,120.000000,0.000000</Position>
<Visual>XuiTitle</Visual> <Visual>XuiTitle</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,60 +1,60 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneDebug</Id> <Id>SceneDebug</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
<ClassOverride>CScene_Debug</ClassOverride> <ClassOverride>CScene_Debug</ClassOverride>
<DefaultFocus>XuiSliderVolume</DefaultFocus> <DefaultFocus>XuiSliderVolume</DefaultFocus>
</Properties> </Properties>
<XuiImage> <XuiImage>
<Properties> <Properties>
<Id>XuiImage1</Id> <Id>XuiImage1</Id>
<Width>556.000061</Width> <Width>556.000061</Width>
<Height>97.000008</Height> <Height>97.000008</Height>
<Position>361.000061,60.000000,0.000000</Position> <Position>361.000061,60.000000,0.000000</Position>
<ImagePath>Graphics\MenuTitle.png</ImagePath> <ImagePath>Graphics\MenuTitle.png</ImagePath>
</Properties> </Properties>
</XuiImage> </XuiImage>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>XuiCheckbox1</Id> <Id>XuiCheckbox1</Id>
<Width>198.000000</Width> <Width>198.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>376.000000,218.999985,0.000000</Position> <Position>376.000000,218.999985,0.000000</Position>
<Show>false</Show> <Show>false</Show>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>XuiCheckbox2</Id> <Id>XuiCheckbox2</Id>
<Width>198.000000</Width> <Width>198.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>376.000000,291.999969,0.000000</Position> <Position>376.000000,291.999969,0.000000</Position>
<Show>false</Show> <Show>false</Show>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>XuiCheckbox3</Id> <Id>XuiCheckbox3</Id>
<Width>198.000000</Width> <Width>198.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>376.000000,365.000000,0.000000</Position> <Position>376.000000,365.000000,0.000000</Position>
<Show>false</Show> <Show>false</Show>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>XuiCheckbox4</Id> <Id>XuiCheckbox4</Id>
<Width>198.000000</Width> <Width>198.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>376.000000,438.000031,0.000000</Position> <Position>376.000000,438.000031,0.000000</Position>
<Show>false</Show> <Show>false</Show>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,51 +1,51 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneDebug</Id> <Id>SceneDebug</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
<ClassOverride>CScene_Debug</ClassOverride> <ClassOverride>CScene_Debug</ClassOverride>
<DefaultFocus>XuiSliderVolume</DefaultFocus> <DefaultFocus>XuiSliderVolume</DefaultFocus>
</Properties> </Properties>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>XuiCheckbox1</Id> <Id>XuiCheckbox1</Id>
<Width>198.000000</Width> <Width>198.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>221.000000,103.999985,0.000000</Position> <Position>221.000000,103.999985,0.000000</Position>
<Show>false</Show> <Show>false</Show>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>XuiCheckbox2</Id> <Id>XuiCheckbox2</Id>
<Width>198.000000</Width> <Width>198.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>221.000000,176.999969,0.000000</Position> <Position>221.000000,176.999969,0.000000</Position>
<Show>false</Show> <Show>false</Show>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>XuiCheckbox3</Id> <Id>XuiCheckbox3</Id>
<Width>198.000000</Width> <Width>198.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>221.000000,250.000000,0.000000</Position> <Position>221.000000,250.000000,0.000000</Position>
<Show>false</Show> <Show>false</Show>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>XuiCheckbox4</Id> <Id>XuiCheckbox4</Id>
<Width>198.000000</Width> <Width>198.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>221.000000,323.000031,0.000000</Position> <Position>221.000000,323.000031,0.000000</Position>
<Show>false</Show> <Show>false</Show>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -0,0 +1,254 @@
<XuiCanvas version="000c">
<Properties>
<Width>1280.000000</Width>
<Height>720.000000</Height>
</Properties>
<XuiScene>
<Properties>
<Id>XuiDebugFillArea</Id>
<Width>823.000000</Width>
<Height>510.000000</Height>
<Position>228.000000,105.000046,0.000000</Position>
<ClassOverride>CScene_DebugFillArea</ClassOverride>
<DefaultFocus>StartX</DefaultFocus>
</Properties>
<XuiEdit>
<Properties>
<Id>StartX</Id>
<Width>245.000000</Width>
<Height>33.000000</Height>
<Position>35.000015,65.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavRight>EndX</NavRight>
<NavDown>StartY</NavDown>
<AllowedChars>0123456789-</AllowedChars>
</Properties>
</XuiEdit>
<XuiEdit>
<Properties>
<Id>StartY</Id>
<Width>245.000000</Width>
<Height>33.000000</Height>
<Position>35.000015,150.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavRight>EndY</NavRight>
<NavUp>StartX</NavUp>
<NavDown>StartZ</NavDown>
<AllowedChars>0123456789-</AllowedChars>
</Properties>
</XuiEdit>
<XuiEdit>
<Properties>
<Id>StartZ</Id>
<Width>245.000000</Width>
<Height>33.000000</Height>
<Position>35.000015,235.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavRight>EndZ</NavRight>
<NavUp>StartY</NavUp>
<NavDown>EdgeTile</NavDown>
<AllowedChars>0123456789-</AllowedChars>
</Properties>
</XuiEdit>
<XuiEdit>
<Properties>
<Id>EndX</Id>
<Width>245.000000</Width>
<Height>33.000000</Height>
<Position>309.000000,65.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>StartX</NavLeft>
<NavDown>EndY</NavDown>
<AllowedChars>0123456789-</AllowedChars>
</Properties>
</XuiEdit>
<XuiEdit>
<Properties>
<Id>EndY</Id>
<Width>245.000000</Width>
<Height>33.000000</Height>
<Position>309.000000,150.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>StartY</NavLeft>
<NavUp>EndX</NavUp>
<NavDown>EndZ</NavDown>
<AllowedChars>0123456789-</AllowedChars>
</Properties>
</XuiEdit>
<XuiEdit>
<Properties>
<Id>EndZ</Id>
<Width>245.000000</Width>
<Height>33.000000</Height>
<Position>309.000000,235.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>StartZ</NavLeft>
<NavUp>EndY</NavUp>
<NavDown>FillTile</NavDown>
<AllowedChars>0123456789-</AllowedChars>
</Properties>
</XuiEdit>
<XuiLabel>
<Properties>
<Id>XuiLabel1</Id>
<Width>233.000000</Width>
<Height>24.000000</Height>
<Position>34.000000,35.000015,0.000000</Position>
<Visual>XuiLabelDark</Visual>
<Text>StartX</Text>
</Properties>
</XuiLabel>
<XuiLabel>
<Properties>
<Id>XuiLabel2</Id>
<Width>233.000000</Width>
<Height>24.000000</Height>
<Position>35.000000,119.000015,0.000000</Position>
<Visual>XuiLabelDark</Visual>
<Text>StartY</Text>
</Properties>
</XuiLabel>
<XuiLabel>
<Properties>
<Id>XuiLabel3</Id>
<Width>233.000000</Width>
<Height>24.000000</Height>
<Position>36.000000,200.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual>
<Text>StartZ</Text>
</Properties>
</XuiLabel>
<XuiLabel>
<Properties>
<Id>XuiLabel4</Id>
<Width>233.000000</Width>
<Height>24.000000</Height>
<Position>306.000061,32.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual>
<Text>EndX</Text>
</Properties>
</XuiLabel>
<XuiLabel>
<Properties>
<Id>XuiLabel5</Id>
<Width>233.000000</Width>
<Height>24.000000</Height>
<Position>315.000061,119.000015,0.000000</Position>
<Visual>XuiLabelDark</Visual>
<Text>EndY</Text>
</Properties>
</XuiLabel>
<XuiLabel>
<Properties>
<Id>XuiLabel6</Id>
<Width>233.000000</Width>
<Height>24.000000</Height>
<Position>307.000061,202.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual>
<Text>EndZ</Text>
</Properties>
</XuiLabel>
<XuiButton>
<Properties>
<Id>CreateButton</Id>
<Width>734.000000</Width>
<Height>52.000000</Height>
<Position>38.000000,437.000000,0.000000</Position>
<NavUp>FillData</NavUp>
<Text>Create</Text>
</Properties>
</XuiButton>
<XuiEdit>
<Properties>
<Id>EdgeTile</Id>
<Width>245.000000</Width>
<Height>33.000000</Height>
<Position>33.000015,313.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavRight>FillTile</NavRight>
<NavUp>StartZ</NavUp>
<NavDown>EdgeData</NavDown>
<AllowedChars>0123456789-</AllowedChars>
</Properties>
</XuiEdit>
<XuiLabel>
<Properties>
<Id>XuiLabel7</Id>
<Width>233.000000</Width>
<Height>24.000000</Height>
<Position>34.000000,278.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual>
<Text>EdgeTile</Text>
</Properties>
</XuiLabel>
<XuiEdit>
<Properties>
<Id>EdgeData</Id>
<Width>245.000000</Width>
<Height>33.000000</Height>
<Position>33.000015,396.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavRight>FillData</NavRight>
<NavUp>EdgeTile</NavUp>
<NavDown>CreateButton</NavDown>
<AllowedChars>0123456789-</AllowedChars>
</Properties>
</XuiEdit>
<XuiLabel>
<Properties>
<Id>XuiLabel8</Id>
<Width>233.000000</Width>
<Height>24.000000</Height>
<Position>34.000000,361.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual>
<Text>EdgeData</Text>
</Properties>
</XuiLabel>
<XuiEdit>
<Properties>
<Id>FillTile</Id>
<Width>245.000000</Width>
<Height>33.000000</Height>
<Position>304.000061,320.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>EdgeTile</NavLeft>
<NavUp>EndZ</NavUp>
<NavDown>FillData</NavDown>
<AllowedChars>0123456789-</AllowedChars>
</Properties>
</XuiEdit>
<XuiLabel>
<Properties>
<Id>XuiLabel9</Id>
<Width>233.000000</Width>
<Height>24.000000</Height>
<Position>305.000031,285.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual>
<Text>FillTile</Text>
</Properties>
</XuiLabel>
<XuiEdit>
<Properties>
<Id>FillData</Id>
<Width>245.000000</Width>
<Height>33.000000</Height>
<Position>305.000061,395.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>EdgeData</NavLeft>
<NavUp>FillTile</NavUp>
<NavDown>CreateButton</NavDown>
<AllowedChars>0123456789-</AllowedChars>
</Properties>
</XuiEdit>
<XuiLabel>
<Properties>
<Id>XuiLabel10</Id>
<Width>233.000000</Width>
<Height>24.000000</Height>
<Position>306.000031,360.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual>
<Text>FillData</Text>
</Properties>
</XuiLabel>
</XuiScene>
</XuiCanvas>
@@ -1,132 +1,132 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>DebugItemEditor</Id> <Id>DebugItemEditor</Id>
<Width>685.000061</Width> <Width>685.000061</Width>
<Height>400.000000</Height> <Height>400.000000</Height>
<Position>297.500031,195.000046,0.000000</Position> <Position>297.500031,195.000046,0.000000</Position>
<ClassOverride>CScene_DebugItemEditor</ClassOverride> <ClassOverride>CScene_DebugItemEditor</ClassOverride>
<DefaultFocus>itemId</DefaultFocus> <DefaultFocus>itemId</DefaultFocus>
</Properties> </Properties>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>icon</Id> <Id>icon</Id>
<Width>46.000000</Width> <Width>46.000000</Width>
<Height>46.000000</Height> <Height>46.000000</Height>
<Position>23.000000,28.999985,0.000000</Position> <Position>23.000000,28.999985,0.000000</Position>
<Anchor>1</Anchor> <Anchor>1</Anchor>
<ColorWriteFlags>7</ColorWriteFlags> <ColorWriteFlags>7</ColorWriteFlags>
<ClassOverride>CXuiCtrlCraftIngredientSlot</ClassOverride> <ClassOverride>CXuiCtrlCraftIngredientSlot</ClassOverride>
<Visual>XuiVisualImagePresenter</Visual> <Visual>XuiVisualImagePresenter</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>itemName</Id> <Id>itemName</Id>
<Width>339.000000</Width> <Width>339.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>83.000000,32.000000,0.000000</Position> <Position>83.000000,32.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>itemId</Id> <Id>itemId</Id>
<Width>200.000000</Width> <Width>200.000000</Width>
<Position>23.000000,107.000000,0.000000</Position> <Position>23.000000,107.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavRight>itemCount</NavRight> <NavRight>itemCount</NavRight>
<NavDown>itemAuxValue</NavDown> <NavDown>itemAuxValue</NavDown>
<AllowedChars>0123456789</AllowedChars> <AllowedChars>0123456789</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel1</Id> <Id>XuiLabel1</Id>
<Width>257.000000</Width> <Width>257.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>23.000000,77.000000,0.000000</Position> <Position>23.000000,77.000000,0.000000</Position>
<Visual>XuiLabelDarkLeftWrap</Visual> <Visual>XuiLabelDarkLeftWrap</Visual>
<Text>Item Id</Text> <Text>Item Id</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>itemAuxValue</Id> <Id>itemAuxValue</Id>
<Width>200.000000</Width> <Width>200.000000</Width>
<Position>23.000000,169.999985,0.000000</Position> <Position>23.000000,169.999985,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavRight>item4JData</NavRight> <NavRight>item4JData</NavRight>
<NavUp>itemId</NavUp> <NavUp>itemId</NavUp>
<NavDown>itemCount</NavDown> <NavDown>itemCount</NavDown>
<AllowedChars>0123456789</AllowedChars> <AllowedChars>0123456789</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel2</Id> <Id>XuiLabel2</Id>
<Width>257.000000</Width> <Width>257.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>23.000000,143.000000,0.000000</Position> <Position>23.000000,143.000000,0.000000</Position>
<Visual>XuiLabelDarkLeftWrap</Visual> <Visual>XuiLabelDarkLeftWrap</Visual>
<Text>Aux Value</Text> <Text>Aux Value</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>itemCount</Id> <Id>itemCount</Id>
<Width>200.000000</Width> <Width>200.000000</Width>
<Position>346.000000,102.999962,0.000000</Position> <Position>346.000000,102.999962,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>itemId</NavLeft> <NavLeft>itemId</NavLeft>
<NavUp>itemAuxValue</NavUp> <NavUp>itemAuxValue</NavUp>
<NavDown>item4JData</NavDown> <NavDown>item4JData</NavDown>
<AllowedChars>0123456789</AllowedChars> <AllowedChars>0123456789</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel3</Id> <Id>XuiLabel3</Id>
<Width>257.000000</Width> <Width>257.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>346.000000,76.999992,0.000000</Position> <Position>346.000000,76.999992,0.000000</Position>
<Visual>XuiLabelDarkLeftWrap</Visual> <Visual>XuiLabelDarkLeftWrap</Visual>
<Text>Item Count</Text> <Text>Item Count</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>item4JData</Id> <Id>item4JData</Id>
<Width>200.000000</Width> <Width>200.000000</Width>
<Position>346.000000,163.000000,0.000000</Position> <Position>346.000000,163.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>itemAuxValue</NavLeft> <NavLeft>itemAuxValue</NavLeft>
<NavUp>itemCount</NavUp> <NavUp>itemCount</NavUp>
<AllowedChars>0123456789</AllowedChars> <AllowedChars>0123456789</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel4</Id> <Id>XuiLabel4</Id>
<Width>257.000000</Width> <Width>257.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>346.000000,134.000000,0.000000</Position> <Position>346.000000,134.000000,0.000000</Position>
<Visual>XuiLabelDarkLeftWrap</Visual> <Visual>XuiLabelDarkLeftWrap</Visual>
<Text>4J Data</Text> <Text>4J Data</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>ruleXml</Id> <Id>ruleXml</Id>
<Width>644.000000</Width> <Width>644.000000</Width>
<Height>156.000000</Height> <Height>156.000000</Height>
<Position>18.000000,218.000000,0.000000</Position> <Position>18.000000,218.000000,0.000000</Position>
<Visual>XuiLabelDarkLeftWrap</Visual> <Visual>XuiLabelDarkLeftWrap</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,220 +1,220 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>XuiDebugSchematic</Id> <Id>XuiDebugSchematic</Id>
<Width>823.000000</Width> <Width>823.000000</Width>
<Height>510.000000</Height> <Height>510.000000</Height>
<Position>228.000000,105.000046,0.000000</Position> <Position>228.000000,105.000046,0.000000</Position>
<ClassOverride>CScene_DebugSchematicCreator</ClassOverride> <ClassOverride>CScene_DebugSchematicCreator</ClassOverride>
<DefaultFocus>Name</DefaultFocus> <DefaultFocus>Name</DefaultFocus>
</Properties> </Properties>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>StartX</Id> <Id>StartX</Id>
<Width>245.000000</Width> <Width>245.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>34.000015,158.000000,0.000000</Position> <Position>34.000015,158.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavRight>EndX</NavRight> <NavRight>EndX</NavRight>
<NavUp>Name</NavUp> <NavUp>Name</NavUp>
<NavDown>StartY</NavDown> <NavDown>StartY</NavDown>
<AllowedChars>0123456789-</AllowedChars> <AllowedChars>0123456789-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>StartY</Id> <Id>StartY</Id>
<Width>245.000000</Width> <Width>245.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>34.000015,243.000000,0.000000</Position> <Position>34.000015,243.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavRight>EndY</NavRight> <NavRight>EndY</NavRight>
<NavUp>StartX</NavUp> <NavUp>StartX</NavUp>
<NavDown>StartZ</NavDown> <NavDown>StartZ</NavDown>
<AllowedChars>0123456789-</AllowedChars> <AllowedChars>0123456789-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>StartZ</Id> <Id>StartZ</Id>
<Width>245.000000</Width> <Width>245.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>34.000015,328.000000,0.000000</Position> <Position>34.000015,328.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavRight>EndZ</NavRight> <NavRight>EndZ</NavRight>
<NavUp>StartY</NavUp> <NavUp>StartY</NavUp>
<NavDown>EndX</NavDown> <NavDown>EndX</NavDown>
<AllowedChars>0123456789-</AllowedChars> <AllowedChars>0123456789-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>EndX</Id> <Id>EndX</Id>
<Width>245.000000</Width> <Width>245.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>308.000000,158.000000,0.000000</Position> <Position>308.000000,158.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>StartX</NavLeft> <NavLeft>StartX</NavLeft>
<NavUp>Name</NavUp> <NavUp>Name</NavUp>
<NavDown>EndY</NavDown> <NavDown>EndY</NavDown>
<AllowedChars>0123456789-</AllowedChars> <AllowedChars>0123456789-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>EndY</Id> <Id>EndY</Id>
<Width>245.000000</Width> <Width>245.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>308.000000,243.000000,0.000000</Position> <Position>308.000000,243.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>StartY</NavLeft> <NavLeft>StartY</NavLeft>
<NavUp>EndX</NavUp> <NavUp>EndX</NavUp>
<NavDown>EndZ</NavDown> <NavDown>EndZ</NavDown>
<AllowedChars>0123456789-</AllowedChars> <AllowedChars>0123456789-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>EndZ</Id> <Id>EndZ</Id>
<Width>245.000000</Width> <Width>245.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>308.000000,328.000000,0.000000</Position> <Position>308.000000,328.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>StartZ</NavLeft> <NavLeft>StartZ</NavLeft>
<NavUp>EndY</NavUp> <NavUp>EndY</NavUp>
<NavDown>SaveMobs</NavDown> <NavDown>SaveMobs</NavDown>
<AllowedChars>0123456789-</AllowedChars> <AllowedChars>0123456789-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel1</Id> <Id>XuiLabel1</Id>
<Width>233.000000</Width> <Width>233.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>33.000000,128.000015,0.000000</Position> <Position>33.000000,128.000015,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>StartX</Text> <Text>StartX</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel2</Id> <Id>XuiLabel2</Id>
<Width>233.000000</Width> <Width>233.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>34.000000,212.000015,0.000000</Position> <Position>34.000000,212.000015,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>StartY</Text> <Text>StartY</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel3</Id> <Id>XuiLabel3</Id>
<Width>233.000000</Width> <Width>233.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>35.000000,293.000000,0.000000</Position> <Position>35.000000,293.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>StartZ</Text> <Text>StartZ</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel4</Id> <Id>XuiLabel4</Id>
<Width>233.000000</Width> <Width>233.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>305.000061,125.000000,0.000000</Position> <Position>305.000061,125.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>EndX</Text> <Text>EndX</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel5</Id> <Id>XuiLabel5</Id>
<Width>233.000000</Width> <Width>233.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>314.000061,212.000015,0.000000</Position> <Position>314.000061,212.000015,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>EndY</Text> <Text>EndY</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel6</Id> <Id>XuiLabel6</Id>
<Width>233.000000</Width> <Width>233.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>306.000061,295.000000,0.000000</Position> <Position>306.000061,295.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>EndZ</Text> <Text>EndZ</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>CreateButton</Id> <Id>CreateButton</Id>
<Width>734.000000</Width> <Width>734.000000</Width>
<Height>52.000000</Height> <Height>52.000000</Height>
<Position>38.000000,437.000000,0.000000</Position> <Position>38.000000,437.000000,0.000000</Position>
<NavUp>SaveMobs</NavUp> <NavUp>SaveMobs</NavUp>
<Text>Create</Text> <Text>Create</Text>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>Name</Id> <Id>Name</Id>
<Width>759.000000</Width> <Width>759.000000</Width>
<Height>47.000000</Height> <Height>47.000000</Height>
<Position>32.000031,64.000000,0.000000</Position> <Position>32.000031,64.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavDown>StartX</NavDown> <NavDown>StartX</NavDown>
<Text>schematic</Text> <Text>schematic</Text>
<TextLimit>64</TextLimit> <TextLimit>64</TextLimit>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel7</Id> <Id>XuiLabel7</Id>
<Width>480.000000</Width> <Width>480.000000</Width>
<Height>42.000000</Height> <Height>42.000000</Height>
<Position>31.000000,13.000000,0.000000</Position> <Position>31.000000,13.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>Name</Text> <Text>Name</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel8</Id> <Id>XuiLabel8</Id>
<Width>222.000000</Width> <Width>222.000000</Width>
<Height>236.000000</Height> <Height>236.000000</Height>
<Position>570.000000,124.000000,0.000000</Position> <Position>570.000000,124.000000,0.000000</Position>
<Visual>XuiLabelDarkLeftWrap</Visual> <Visual>XuiLabelDarkLeftWrap</Visual>
<Text>Start co-ords should be even, end co-ords should be odd. If they are not the area included will be expanded.</Text> <Text>Start co-ords should be even, end co-ords should be odd. If they are not the area included will be expanded.</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>SaveMobs</Id> <Id>SaveMobs</Id>
<Width>309.000000</Width> <Width>309.000000</Width>
<Height>39.000000</Height> <Height>39.000000</Height>
<Position>43.000000,388.000000,0.000000</Position> <Position>43.000000,388.000000,0.000000</Position>
<NavRight>UseXboxCompression</NavRight> <NavRight>UseXboxCompression</NavRight>
<NavUp>EndZ</NavUp> <NavUp>EndZ</NavUp>
<NavDown>CreateButton</NavDown> <NavDown>CreateButton</NavDown>
<Text>Save Mobs</Text> <Text>Save Mobs</Text>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>UseXboxCompression</Id> <Id>UseXboxCompression</Id>
<Width>309.000000</Width> <Width>309.000000</Width>
<Height>39.000000</Height> <Height>39.000000</Height>
<Position>353.000000,388.000000,0.000000</Position> <Position>353.000000,388.000000,0.000000</Position>
<NavLeft>SaveMobs</NavLeft> <NavLeft>SaveMobs</NavLeft>
<NavUp>EndZ</NavUp> <NavUp>EndZ</NavUp>
<NavDown>CreateButton</NavDown> <NavDown>CreateButton</NavDown>
<Text>Use Xbox Compression</Text> <Text>Use Xbox Compression</Text>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,160 +1,160 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>XuiDebugSetCamera</Id> <Id>XuiDebugSetCamera</Id>
<Width>267.275146</Width> <Width>267.275146</Width>
<Height>360.700745</Height> <Height>360.700745</Height>
<Position>993.158508,15.835232,0.000000</Position> <Position>993.158508,15.835232,0.000000</Position>
<DisableTimelineRecursion>true</DisableTimelineRecursion> <DisableTimelineRecursion>true</DisableTimelineRecursion>
<ClassOverride>CScene_DebugSetCamera</ClassOverride> <ClassOverride>CScene_DebugSetCamera</ClassOverride>
<DefaultFocus>LockPlayer</DefaultFocus> <DefaultFocus>LockPlayer</DefaultFocus>
</Properties> </Properties>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>CamX</Id> <Id>CamX</Id>
<Width>80.000000</Width> <Width>80.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>20.000000,100.000000,0.000000</Position> <Position>20.000000,100.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>CamZ</NavLeft> <NavLeft>CamZ</NavLeft>
<NavRight>CamY</NavRight> <NavRight>CamY</NavRight>
<NavUp>Teleport</NavUp> <NavUp>Teleport</NavUp>
<NavDown>YRot</NavDown> <NavDown>YRot</NavDown>
<AllowedChars>0123456789.-</AllowedChars> <AllowedChars>0123456789.-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>CamZ</Id> <Id>CamZ</Id>
<Width>80.000000</Width> <Width>80.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>180.000000,100.000000,0.000000</Position> <Position>180.000000,100.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>CamY</NavLeft> <NavLeft>CamY</NavLeft>
<NavRight>CamX</NavRight> <NavRight>CamX</NavRight>
<NavUp>Teleport</NavUp> <NavUp>Teleport</NavUp>
<NavDown>Elevation</NavDown> <NavDown>Elevation</NavDown>
<AllowedChars>0123456789.-</AllowedChars> <AllowedChars>0123456789.-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>YRot</Id> <Id>YRot</Id>
<Width>80.000000</Width> <Width>80.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>20.000000,185.000000,0.000000</Position> <Position>20.000000,185.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>Elevation</NavLeft> <NavLeft>Elevation</NavLeft>
<NavRight>Elevation</NavRight> <NavRight>Elevation</NavRight>
<NavUp>CamX</NavUp> <NavUp>CamX</NavUp>
<NavDown>LockPlayer</NavDown> <NavDown>LockPlayer</NavDown>
<AllowedChars>0123456789.-</AllowedChars> <AllowedChars>0123456789.-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>CamY</Id> <Id>CamY</Id>
<Width>80.000000</Width> <Width>80.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>100.000000,100.000000,0.000000</Position> <Position>100.000000,100.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>CamX</NavLeft> <NavLeft>CamX</NavLeft>
<NavRight>CamZ</NavRight> <NavRight>CamZ</NavRight>
<NavUp>Teleport</NavUp> <NavUp>Teleport</NavUp>
<NavDown>Elevation</NavDown> <NavDown>Elevation</NavDown>
<AllowedChars>0123456789.-</AllowedChars> <AllowedChars>0123456789.-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiEdit> <XuiEdit>
<Properties> <Properties>
<Id>Elevation</Id> <Id>Elevation</Id>
<Width>80.000000</Width> <Width>80.000000</Width>
<Height>33.000000</Height> <Height>33.000000</Height>
<Position>100.000000,185.000000,0.000000</Position> <Position>100.000000,185.000000,0.000000</Position>
<ClassOverride>CXuiCtrl4JEdit</ClassOverride> <ClassOverride>CXuiCtrl4JEdit</ClassOverride>
<NavLeft>YRot</NavLeft> <NavLeft>YRot</NavLeft>
<NavRight>YRot</NavRight> <NavRight>YRot</NavRight>
<NavUp>CamY</NavUp> <NavUp>CamY</NavUp>
<NavDown>LockPlayer</NavDown> <NavDown>LockPlayer</NavDown>
<AllowedChars>0123456789.-</AllowedChars> <AllowedChars>0123456789.-</AllowedChars>
</Properties> </Properties>
</XuiEdit> </XuiEdit>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel1</Id> <Id>XuiLabel1</Id>
<Width>80.000000</Width> <Width>80.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>20.000000,70.000015,0.000000</Position> <Position>20.000000,70.000015,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>Cam-X</Text> <Text>Cam-X</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel2</Id> <Id>XuiLabel2</Id>
<Width>140.000000</Width> <Width>140.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>180.000000,67.000000,0.000000</Position> <Position>180.000000,67.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>Cam-Z</Text> <Text>Cam-Z</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel3</Id> <Id>XuiLabel3</Id>
<Width>236.599915</Width> <Width>236.599915</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>10.000000,150.000000,0.000000</Position> <Position>10.000000,150.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>Y-Rot &amp; Elevation (Degs)</Text> <Text>Y-Rot &amp; Elevation (Degs)</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel4</Id> <Id>XuiLabel4</Id>
<Width>80.000000</Width> <Width>80.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>100.000000,70.000000,0.000000</Position> <Position>100.000000,70.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>Cam-Y</Text> <Text>Cam-Y</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>XuiLabel7</Id> <Id>XuiLabel7</Id>
<Width>183.599976</Width> <Width>183.599976</Width>
<Height>42.000000</Height> <Height>42.000000</Height>
<Position>20.000000,14.000000,0.000000</Position> <Position>20.000000,14.000000,0.000000</Position>
<Visual>XuiLabelDark</Visual> <Visual>XuiLabelDark</Visual>
<Text>Set Camera Position</Text> <Text>Set Camera Position</Text>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>LockPlayer</Id> <Id>LockPlayer</Id>
<Width>180.129578</Width> <Width>180.129578</Width>
<Height>39.000000</Height> <Height>39.000000</Height>
<Position>21.000000,240.399994,0.000000</Position> <Position>21.000000,240.399994,0.000000</Position>
<ClassOverride>CXuiCheckbox</ClassOverride> <ClassOverride>CXuiCheckbox</ClassOverride>
<NavUp>YRot</NavUp> <NavUp>YRot</NavUp>
<NavDown>Teleport</NavDown> <NavDown>Teleport</NavDown>
<Text>Lock Player</Text> <Text>Lock Player</Text>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>Teleport</Id> <Id>Teleport</Id>
<Width>180.928040</Width> <Width>180.928040</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>20.320000,296.820038,0.000000</Position> <Position>20.320000,296.820038,0.000000</Position>
<NavUp>LockPlayer</NavUp> <NavUp>LockPlayer</NavUp>
<NavDown>CamX</NavDown> <NavDown>CamX</NavDown>
<Text>Teleport</Text> <Text>Teleport</Text>
</Properties> </Properties>
</XuiButton> </XuiButton>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,24 +1,24 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneDebug</Id> <Id>SceneDebug</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
<ClassOverride>CScene_Debug</ClassOverride> <ClassOverride>CScene_Debug</ClassOverride>
<DefaultFocus>XuiSliderVolume</DefaultFocus> <DefaultFocus>XuiSliderVolume</DefaultFocus>
</Properties> </Properties>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>XuiCheckbox1</Id> <Id>XuiCheckbox1</Id>
<Width>198.000000</Width> <Width>198.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>22.000000,23.999969,0.000000</Position> <Position>22.000000,23.999969,0.000000</Position>
<Show>false</Show> <Show>false</Show>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,323 +1,370 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>DebugOverlay</Id> <Id>DebugOverlay</Id>
<Width>859.000000</Width> <Width>859.000000</Width>
<Height>718.000000</Height> <Height>718.000000</Height>
<Position>422.000031,1.000000,0.000000</Position> <Position>422.000031,1.000000,0.000000</Position>
<ClassOverride>CScene_DebugOverlay</ClassOverride> <ClassOverride>CScene_DebugOverlay</ClassOverride>
<DefaultFocus>ItemsList</DefaultFocus> <DefaultFocus>ItemsList</DefaultFocus>
</Properties> </Properties>
<XuiCommonList> <XuiCommonList>
<Properties> <Properties>
<Id>ItemsList</Id> <Id>ItemsList</Id>
<Width>413.000000</Width> <Width>413.000000</Width>
<Height>274.000000</Height> <Height>274.000000</Height>
<Position>431.000000,404.000000,0.000000</Position> <Position>431.000000,404.000000,0.000000</Position>
<Visual>DebugList</Visual> <Visual>DebugList</Visual>
<NavLeft>SliderFov</NavLeft> <NavLeft>FillArea</NavLeft>
<NavRight>SliderFov</NavRight> <NavRight>FillArea</NavRight>
<NavUp>EnchantmentsList</NavUp> <NavUp>EnchantmentsList</NavUp>
<NavDown>MobList</NavDown> <NavDown>MobList</NavDown>
</Properties> </Properties>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>10.000000,14.000000,0.000000</Position> <Position>10.000000,14.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>DebugButton</Visual> <Visual>DebugButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>10.000000,14.000000,0.000000</Position> <Position>10.000000,14.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>DebugButton</Visual> <Visual>DebugButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>10.000000,14.000000,0.000000</Position> <Position>10.000000,14.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>DebugButton</Visual> <Visual>DebugButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
</XuiCommonList> <XuiListItem>
<XuiCommonList> <Properties>
<Properties> <Id>control_ListItem</Id>
<Id>EnchantmentsList</Id> <Width>469.000000</Width>
<Width>413.000000</Width> <Height>40.000000</Height>
<Height>180.000000</Height> <Position>10.000000,14.000000,0.000000</Position>
<Position>428.000000,213.999954,0.000000</Position> <Anchor>5</Anchor>
<Visual>DebugList</Visual> <Show>false</Show>
<NavLeft>SetNight</NavLeft> <Visual>DebugButton</Visual>
<NavRight>SetNight</NavRight> </Properties>
<NavUp>MobList</NavUp> </XuiListItem>
<NavDown>ItemsList</NavDown> </XuiCommonList>
</Properties> <XuiCommonList>
<XuiListItem> <Properties>
<Properties> <Id>EnchantmentsList</Id>
<Id>control_ListItem</Id> <Width>413.000000</Width>
<Width>469.000000</Width> <Height>180.000000</Height>
<Height>40.000000</Height> <Position>428.000000,213.999954,0.000000</Position>
<Position>10.000000,14.000000,0.000000</Position> <Visual>DebugList</Visual>
<Anchor>5</Anchor> <NavLeft>SetNight</NavLeft>
<Show>false</Show> <NavRight>SetNight</NavRight>
<Visual>DebugButton</Visual> <NavUp>MobList</NavUp>
</Properties> <NavDown>ItemsList</NavDown>
</XuiListItem> </Properties>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>10.000000,14.000000,0.000000</Position> <Position>10.000000,14.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>DebugButton</Visual> <Visual>DebugButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>10.000000,14.000000,0.000000</Position> <Position>10.000000,14.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>DebugButton</Visual> <Visual>DebugButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>10.000000,14.000000,0.000000</Position> <Position>10.000000,14.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>DebugButton</Visual> <Visual>DebugButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
</XuiCommonList> <XuiListItem>
<XuiCommonList> <Properties>
<Properties> <Id>control_ListItem</Id>
<Id>MobList</Id> <Width>469.000000</Width>
<Width>413.000000</Width> <Height>40.000000</Height>
<Height>180.000000</Height> <Position>10.000000,14.000000,0.000000</Position>
<Position>428.000000,24.999954,0.000000</Position> <Anchor>5</Anchor>
<Visual>DebugList</Visual> <Show>false</Show>
<NavLeft>SetCamera</NavLeft> <Visual>DebugButton</Visual>
<NavRight>SetCamera</NavRight> </Properties>
<NavUp>ItemsList</NavUp> </XuiListItem>
<NavDown>EnchantmentsList</NavDown> <XuiListItem>
</Properties> <Properties>
<XuiListItem> <Id>control_ListItem</Id>
<Properties> <Width>469.000000</Width>
<Id>control_ListItem</Id> <Height>40.000000</Height>
<Width>469.000000</Width> <Position>10.000000,14.000000,0.000000</Position>
<Height>40.000000</Height> <Anchor>5</Anchor>
<Position>10.000000,14.000000,0.000000</Position> <Show>false</Show>
<Anchor>5</Anchor> <Visual>DebugButton</Visual>
<Show>false</Show> </Properties>
<Visual>DebugButton</Visual> </XuiListItem>
</Properties> </XuiCommonList>
</XuiListItem> <XuiCommonList>
<XuiListItem> <Properties>
<Properties> <Id>MobList</Id>
<Id>control_ListItem</Id> <Width>413.000000</Width>
<Width>469.000000</Width> <Height>180.000000</Height>
<Height>40.000000</Height> <Position>428.000000,24.999954,0.000000</Position>
<Position>10.000000,14.000000,0.000000</Position> <Visual>DebugList</Visual>
<Anchor>5</Anchor> <NavLeft>SetCamera</NavLeft>
<Show>false</Show> <NavRight>SetCamera</NavRight>
<Visual>DebugButton</Visual> <NavUp>ItemsList</NavUp>
</Properties> <NavDown>EnchantmentsList</NavDown>
</XuiListItem> </Properties>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>10.000000,14.000000,0.000000</Position> <Position>10.000000,14.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>DebugButton</Visual> <Visual>DebugButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
</XuiCommonList> <XuiListItem>
<XuiSlider> <Properties>
<Properties> <Id>control_ListItem</Id>
<Id>SliderFov</Id> <Width>469.000000</Width>
<Width>365.000000</Width> <Height>40.000000</Height>
<Height>36.000000</Height> <Position>10.000000,14.000000,0.000000</Position>
<Position>26.000000,309.000031,0.000000</Position> <Anchor>5</Anchor>
<NavLeft>EnchantmentsList</NavLeft> <Show>false</Show>
<NavRight>EnchantmentsList</NavRight> <Visual>DebugButton</Visual>
<NavUp>SliderTime</NavUp> </Properties>
<NavDown>SetCamera</NavDown> </XuiListItem>
<Text>Set fov</Text> <XuiListItem>
</Properties> <Properties>
</XuiSlider> <Id>control_ListItem</Id>
<XuiSlider> <Width>469.000000</Width>
<Properties> <Height>40.000000</Height>
<Id>SliderTime</Id> <Position>10.000000,14.000000,0.000000</Position>
<Width>365.000000</Width> <Anchor>5</Anchor>
<Height>36.000000</Height> <Show>false</Show>
<Position>26.000000,265.000000,0.000000</Position> <Visual>DebugButton</Visual>
<NavLeft>EnchantmentsList</NavLeft> </Properties>
<NavRight>EnchantmentsList</NavRight> </XuiListItem>
<NavUp>SetDay</NavUp> <XuiListItem>
<NavDown>SliderFov</NavDown> <Properties>
<Text>Set time (unsafe)</Text> <Id>control_ListItem</Id>
<RangeMax>24000</RangeMax> <Width>469.000000</Width>
<Step>100</Step> <Height>40.000000</Height>
<AccelInc>50</AccelInc> <Position>10.000000,14.000000,0.000000</Position>
<AccelTime>10</AccelTime> <Anchor>5</Anchor>
</Properties> <Show>false</Show>
</XuiSlider> <Visual>DebugButton</Visual>
<XuiButton> </Properties>
<Properties> </XuiListItem>
<Id>SetNight</Id> </XuiCommonList>
<Width>190.000000</Width> <XuiSlider>
<Height>40.000000</Height> <Properties>
<Position>203.000000,224.000000,0.000000</Position> <Id>SliderFov</Id>
<Visual>XuiMainMenuButton_L</Visual> <Width>365.000000</Width>
<NavLeft>SetDay</NavLeft> <Height>36.000000</Height>
<NavRight>EnchantmentsList</NavRight> <Position>26.000000,309.000031,0.000000</Position>
<NavUp>ToggleThunder</NavUp> <NavLeft>EnchantmentsList</NavLeft>
<NavDown>SliderTime</NavDown> <NavRight>EnchantmentsList</NavRight>
<Text>Night</Text> <NavUp>SliderTime</NavUp>
</Properties> <NavDown>FillArea</NavDown>
</XuiButton> <Text>Set fov</Text>
<XuiButton> </Properties>
<Properties> </XuiSlider>
<Id>SetDay</Id> <XuiSlider>
<Width>168.000000</Width> <Properties>
<Height>40.000000</Height> <Id>SliderTime</Id>
<Position>28.000000,224.000000,0.000000</Position> <Width>365.000000</Width>
<Visual>XuiMainMenuButton_L</Visual> <Height>36.000000</Height>
<NavLeft>EnchantmentsList</NavLeft> <Position>26.000000,265.000000,0.000000</Position>
<NavRight>SetNight</NavRight> <NavLeft>EnchantmentsList</NavLeft>
<NavUp>ToggleRain</NavUp> <NavRight>EnchantmentsList</NavRight>
<NavDown>SliderTime</NavDown> <NavUp>SetDay</NavUp>
<Text>Day</Text> <NavDown>SliderFov</NavDown>
</Properties> <Text>Set time (unsafe)</Text>
</XuiButton> <RangeMax>24000</RangeMax>
<XuiButton> <Step>100</Step>
<Properties> <AccelInc>50</AccelInc>
<Id>ToggleThunder</Id> <AccelTime>10</AccelTime>
<Width>190.000000</Width> </Properties>
<Height>40.000000</Height> </XuiSlider>
<Position>203.000061,165.000000,0.000000</Position> <XuiButton>
<Visual>XuiMainMenuButton_L</Visual> <Properties>
<NavLeft>ToggleRain</NavLeft> <Id>SetNight</Id>
<NavRight>MobList</NavRight> <Width>190.000000</Width>
<NavUp>CreateSchematic</NavUp> <Height>40.000000</Height>
<NavDown>SetNight</NavDown> <Position>203.000000,224.000000,0.000000</Position>
<Text>Toggle Thunder</Text> <Visual>XuiMainMenuButton_L</Visual>
</Properties> <NavLeft>SetDay</NavLeft>
</XuiButton> <NavRight>EnchantmentsList</NavRight>
<XuiButton> <NavUp>ToggleThunder</NavUp>
<Properties> <NavDown>SliderTime</NavDown>
<Id>ToggleRain</Id> <Text>Night</Text>
<Width>168.000000</Width> </Properties>
<Height>40.000000</Height> </XuiButton>
<Position>28.000000,165.000000,0.000000</Position> <XuiButton>
<Visual>XuiMainMenuButton_L</Visual> <Properties>
<NavLeft>MobList</NavLeft> <Id>SetDay</Id>
<NavRight>ToggleThunder</NavRight> <Width>168.000000</Width>
<NavUp>CreateSchematic</NavUp> <Height>40.000000</Height>
<NavDown>SetDay</NavDown> <Position>28.000000,224.000000,0.000000</Position>
<Text>Toggle Rain</Text> <Visual>XuiMainMenuButton_L</Visual>
</Properties> <NavLeft>EnchantmentsList</NavLeft>
</XuiButton> <NavRight>SetNight</NavRight>
<XuiButton> <NavUp>ToggleRain</NavUp>
<Properties> <NavDown>SliderTime</NavDown>
<Id>CreateSchematic</Id> <Text>Day</Text>
<Width>365.000000</Width> </Properties>
<Height>40.000000</Height> </XuiButton>
<Position>26.000000,118.000015,0.000000</Position> <XuiButton>
<Visual>XuiMainMenuButton_L</Visual> <Properties>
<NavLeft>MobList</NavLeft> <Id>ToggleThunder</Id>
<NavRight>MobList</NavRight> <Width>190.000000</Width>
<NavUp>ResetTutorial</NavUp> <Height>40.000000</Height>
<NavDown>ToggleRain</NavDown> <Position>203.000061,165.000000,0.000000</Position>
<Text>Create Schematic</Text> <Visual>XuiMainMenuButton_L</Visual>
</Properties> <NavLeft>ToggleRain</NavLeft>
</XuiButton> <NavRight>MobList</NavRight>
<XuiButton> <NavUp>CreateSchematic</NavUp>
<Properties> <NavDown>SetNight</NavDown>
<Id>ResetTutorial</Id> <Text>Toggle Thunder</Text>
<Width>365.000000</Width> </Properties>
<Height>40.000000</Height> </XuiButton>
<Position>26.000000,73.000000,0.000000</Position> <XuiButton>
<Visual>XuiMainMenuButton_L</Visual> <Properties>
<NavLeft>MobList</NavLeft> <Id>ToggleRain</Id>
<NavRight>MobList</NavRight> <Width>168.000000</Width>
<NavUp>SetCamera</NavUp> <Height>40.000000</Height>
<NavDown>CreateSchematic</NavDown> <Position>28.000000,165.000000,0.000000</Position>
<Text>Reset profile tutorial progress</Text> <Visual>XuiMainMenuButton_L</Visual>
</Properties> <NavLeft>MobList</NavLeft>
</XuiButton> <NavRight>ToggleThunder</NavRight>
<XuiButton> <NavUp>CreateSchematic</NavUp>
<Properties> <NavDown>SetDay</NavDown>
<Id>SetCamera</Id> <Text>Toggle Rain</Text>
<Width>365.000000</Width> </Properties>
<Height>40.000000</Height> </XuiButton>
<Position>25.000000,29.000002,0.000000</Position> <XuiButton>
<Visual>XuiMainMenuButton_L</Visual> <Properties>
<NavLeft>MobList</NavLeft> <Id>CreateSchematic</Id>
<NavRight>MobList</NavRight> <Width>365.000000</Width>
<NavUp>SliderFov</NavUp> <Height>40.000000</Height>
<NavDown>ResetTutorial</NavDown> <Position>26.000000,118.000015,0.000000</Position>
<Text>Set camera</Text> <Visual>XuiMainMenuButton_L</Visual>
</Properties> <NavLeft>MobList</NavLeft>
</XuiButton> <NavRight>MobList</NavRight>
<XuiButton> <NavUp>ResetTutorial</NavUp>
<Properties> <NavDown>ToggleRain</NavDown>
<Id>SaveToFile</Id> <Text>Create Schematic</Text>
<Width>229.000000</Width> </Properties>
<Height>40.000000</Height> </XuiButton>
<Position>38.000000,36.000000,0.000000</Position> <XuiButton>
<Show>false</Show> <Properties>
<Visual>XuiMainMenuButton_L</Visual> <Id>ResetTutorial</Id>
<Enabled>false</Enabled> <Width>365.000000</Width>
<NavRight>ChunkRadius</NavRight> <Height>40.000000</Height>
<NavUp>ItemsList</NavUp> <Position>26.000000,73.000000,0.000000</Position>
<NavDown>SetSpawn</NavDown> <Visual>XuiMainMenuButton_L</Visual>
<Text>Save Level To File</Text> <NavLeft>MobList</NavLeft>
</Properties> <NavRight>MobList</NavRight>
</XuiButton> <NavUp>SetCamera</NavUp>
<XuiSlider> <NavDown>CreateSchematic</NavDown>
<Properties> <Text>Reset profile tutorial progress</Text>
<Id>ChunkRadius</Id> </Properties>
<Width>195.999985</Width> </XuiButton>
<Height>87.000000</Height> <XuiButton>
<Position>263.000061,14.000000,0.000000</Position> <Properties>
<Show>false</Show> <Id>SetCamera</Id>
<Enabled>false</Enabled> <Width>365.000000</Width>
<NavLeft>SaveToFile</NavLeft> <Height>40.000000</Height>
<NavUp>ItemsList</NavUp> <Position>25.000000,29.000002,0.000000</Position>
<NavDown>SetSpawn</NavDown> <Visual>XuiMainMenuButton_L</Visual>
<Text>Radius (chunks &gt; 0)</Text> <NavLeft>MobList</NavLeft>
<RangeMax>64</RangeMax> <NavRight>MobList</NavRight>
</Properties> <NavUp>SliderFov</NavUp>
</XuiSlider> <NavDown>ResetTutorial</NavDown>
</XuiScene> <Text>Set camera</Text>
</Properties>
</XuiButton>
<XuiButton>
<Properties>
<Id>SaveToFile</Id>
<Width>229.000000</Width>
<Height>40.000000</Height>
<Position>38.000000,36.000000,0.000000</Position>
<Show>false</Show>
<Visual>XuiMainMenuButton_L</Visual>
<Enabled>false</Enabled>
<NavRight>ChunkRadius</NavRight>
<NavUp>ItemsList</NavUp>
<NavDown>SetSpawn</NavDown>
<Text>Save Level To File</Text>
</Properties>
</XuiButton>
<XuiSlider>
<Properties>
<Id>ChunkRadius</Id>
<Width>195.999985</Width>
<Height>87.000000</Height>
<Position>263.000061,14.000000,0.000000</Position>
<Show>false</Show>
<Enabled>false</Enabled>
<NavLeft>SaveToFile</NavLeft>
<NavUp>ItemsList</NavUp>
<NavDown>SetSpawn</NavDown>
<Text>Radius (chunks &gt; 0)</Text>
<RangeMax>64</RangeMax>
</Properties>
</XuiSlider>
<XuiButton>
<Properties>
<Id>FillArea</Id>
<Width>365.000000</Width>
<Height>40.000000</Height>
<Position>27.000000,357.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L</Visual>
<NavLeft>ItemsList</NavLeft>
<NavRight>ItemsList</NavRight>
<NavUp>SliderFov</NavUp>
<NavDown>SaveToFile</NavDown>
<Text>Fill Area</Text>
</Properties>
</XuiButton>
</XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,161 +1,161 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>DebugOverlay</Id> <Id>DebugOverlay</Id>
<Width>300.000000</Width> <Width>300.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
<Position>340.000000,1.000000,0.000000</Position> <Position>340.000000,1.000000,0.000000</Position>
<ClassOverride>CScene_DebugOverlay</ClassOverride> <ClassOverride>CScene_DebugOverlay</ClassOverride>
<DefaultFocus>ItemsList</DefaultFocus> <DefaultFocus>ItemsList</DefaultFocus>
</Properties> </Properties>
<XuiCommonList> <XuiCommonList>
<Properties> <Properties>
<Id>ItemsList</Id> <Id>ItemsList</Id>
<Width>223.000000</Width> <Width>223.000000</Width>
<Height>125.999969</Height> <Height>125.999969</Height>
<Position>35.000000,329.000000,0.000000</Position> <Position>35.000000,329.000000,0.000000</Position>
<Visual>DebugList</Visual> <Visual>DebugList</Visual>
<NavUp>MobList</NavUp> <NavUp>MobList</NavUp>
<NavDown>ResetTutorial</NavDown> <NavDown>ResetTutorial</NavDown>
</Properties> </Properties>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>10.000000,14.000000,0.000000</Position> <Position>10.000000,14.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>DebugButton</Visual> <Visual>DebugButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
</XuiCommonList> </XuiCommonList>
<XuiCommonList> <XuiCommonList>
<Properties> <Properties>
<Id>MobList</Id> <Id>MobList</Id>
<Width>225.000000</Width> <Width>225.000000</Width>
<Height>90.999969</Height> <Height>90.999969</Height>
<Position>33.000000,238.999969,0.000000</Position> <Position>33.000000,238.999969,0.000000</Position>
<Visual>DebugList</Visual> <Visual>DebugList</Visual>
<NavUp>SliderFov</NavUp> <NavUp>SliderFov</NavUp>
<NavDown>ItemsList</NavDown> <NavDown>ItemsList</NavDown>
</Properties> </Properties>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>10.000000,14.000000,0.000000</Position> <Position>10.000000,14.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>DebugButton</Visual> <Visual>DebugButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
</XuiCommonList> </XuiCommonList>
<XuiSlider> <XuiSlider>
<Properties> <Properties>
<Id>SliderFov</Id> <Id>SliderFov</Id>
<Width>200.000000</Width> <Width>200.000000</Width>
<Height>38.000000</Height> <Height>38.000000</Height>
<Position>46.000046,201.000000,0.000000</Position> <Position>46.000046,201.000000,0.000000</Position>
<NavUp>SliderTime</NavUp> <NavUp>SliderTime</NavUp>
<NavDown>MobList</NavDown> <NavDown>MobList</NavDown>
<Text>Set fov</Text> <Text>Set fov</Text>
</Properties> </Properties>
</XuiSlider> </XuiSlider>
<XuiSlider> <XuiSlider>
<Properties> <Properties>
<Id>SliderTime</Id> <Id>SliderTime</Id>
<Width>200.000000</Width> <Width>200.000000</Width>
<Height>38.000000</Height> <Height>38.000000</Height>
<Position>45.000046,164.000000,0.000000</Position> <Position>45.000046,164.000000,0.000000</Position>
<NavUp>ToggleRain</NavUp> <NavUp>ToggleRain</NavUp>
<NavDown>SliderFov</NavDown> <NavDown>SliderFov</NavDown>
<Text>Set time (unsafe)</Text> <Text>Set time (unsafe)</Text>
<RangeMax>24000</RangeMax> <RangeMax>24000</RangeMax>
<Step>100</Step> <Step>100</Step>
<AccelInc>50</AccelInc> <AccelInc>50</AccelInc>
<AccelTime>10</AccelTime> <AccelTime>10</AccelTime>
</Properties> </Properties>
</XuiSlider> </XuiSlider>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ToggleThunder</Id> <Id>ToggleThunder</Id>
<Width>100.000000</Width> <Width>100.000000</Width>
<Position>150.000061,132.000000,0.000000</Position> <Position>150.000061,132.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L</Visual> <Visual>XuiMainMenuButton_L</Visual>
<NavLeft>ToggleRain</NavLeft> <NavLeft>ToggleRain</NavLeft>
<NavUp>SetSpawn</NavUp> <NavUp>SetSpawn</NavUp>
<NavDown>SliderTime</NavDown> <NavDown>SliderTime</NavDown>
<Text>Toggle Thunder</Text> <Text>Toggle Thunder</Text>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ToggleRain</Id> <Id>ToggleRain</Id>
<Width>100.000000</Width> <Width>100.000000</Width>
<Position>41.000000,132.000000,0.000000</Position> <Position>41.000000,132.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L</Visual> <Visual>XuiMainMenuButton_L</Visual>
<NavRight>ToggleThunder</NavRight> <NavRight>ToggleThunder</NavRight>
<NavUp>SetSpawn</NavUp> <NavUp>SetSpawn</NavUp>
<NavDown>SliderTime</NavDown> <NavDown>SliderTime</NavDown>
<Text>Toggle Rain</Text> <Text>Toggle Rain</Text>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>SetSpawn</Id> <Id>SetSpawn</Id>
<Width>210.000000</Width> <Width>210.000000</Width>
<Position>41.000000,95.000000,0.000000</Position> <Position>41.000000,95.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L</Visual> <Visual>XuiMainMenuButton_L</Visual>
<Enabled>false</Enabled> <Enabled>false</Enabled>
<NavUp>ResetTutorial</NavUp> <NavUp>ResetTutorial</NavUp>
<NavDown>ToggleRain</NavDown> <NavDown>ToggleRain</NavDown>
<Text>Set Level Spawn Point To Here</Text> <Text>Set Level Spawn Point To Here</Text>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ResetTutorial</Id> <Id>ResetTutorial</Id>
<Width>210.000000</Width> <Width>210.000000</Width>
<Position>41.000000,57.999996,0.000000</Position> <Position>41.000000,57.999996,0.000000</Position>
<Visual>XuiMainMenuButton_L</Visual> <Visual>XuiMainMenuButton_L</Visual>
<NavUp>ItemsList</NavUp> <NavUp>ItemsList</NavUp>
<NavDown>SetSpawn</NavDown> <NavDown>SetSpawn</NavDown>
<Text>Reset profile tutorial progress</Text> <Text>Reset profile tutorial progress</Text>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>SaveToFile</Id> <Id>SaveToFile</Id>
<Width>100.000000</Width> <Width>100.000000</Width>
<Position>38.000000,29.000000,0.000000</Position> <Position>38.000000,29.000000,0.000000</Position>
<Show>false</Show> <Show>false</Show>
<Visual>XuiMainMenuButton_L</Visual> <Visual>XuiMainMenuButton_L</Visual>
<Enabled>false</Enabled> <Enabled>false</Enabled>
<NavRight>ChunkRadius</NavRight> <NavRight>ChunkRadius</NavRight>
<NavUp>ItemsList</NavUp> <NavUp>ItemsList</NavUp>
<NavDown>SetSpawn</NavDown> <NavDown>SetSpawn</NavDown>
<Text>Save Level To File</Text> <Text>Save Level To File</Text>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiSlider> <XuiSlider>
<Properties> <Properties>
<Id>ChunkRadius</Id> <Id>ChunkRadius</Id>
<Width>100.000000</Width> <Width>100.000000</Width>
<Position>150.000061,29.000000,0.000000</Position> <Position>150.000061,29.000000,0.000000</Position>
<Show>false</Show> <Show>false</Show>
<Enabled>false</Enabled> <Enabled>false</Enabled>
<NavLeft>SaveToFile</NavLeft> <NavLeft>SaveToFile</NavLeft>
<NavUp>ItemsList</NavUp> <NavUp>ItemsList</NavUp>
<NavDown>SetSpawn</NavDown> <NavDown>SetSpawn</NavDown>
<Text>Radius (chunks &gt; 0)</Text> <Text>Radius (chunks &gt; 0)</Text>
<RangeMax>64</RangeMax> <RangeMax>64</RangeMax>
</Properties> </Properties>
</XuiSlider> </XuiSlider>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,39 +1,39 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>DebugTips</Id> <Id>DebugTips</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
<ClassOverride>CScene_DebugTips</ClassOverride> <ClassOverride>CScene_DebugTips</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>ButtonConfirm</DefaultFocus> <DefaultFocus>ButtonConfirm</DefaultFocus>
</Properties> </Properties>
<XuiLabel> <Timelines>
<Properties> <NamedFrames>
<Id>Tip</Id> <NamedFrame>
<Width>800.000000</Width> <Name>Normal</Name>
<Height>100.000000</Height> <Time>0</Time>
<Position>240.000061,520.000000,0.000000</Position> </NamedFrame>
<Visual>TipPanel</Visual> <NamedFrame>
</Properties> <Name>EndNormal</Name>
</XuiLabel> <Time>40</Time>
<Timelines> <Command>gotoplay</Command>
<NamedFrames> <TargetParameter>Normal</TargetParameter>
<NamedFrame> </NamedFrame>
<Name>Normal</Name> </NamedFrames>
<Time>0</Time> </Timelines>
</NamedFrame> <XuiLabel>
<NamedFrame> <Properties>
<Name>EndNormal</Name> <Id>Tip</Id>
<Time>40</Time> <Width>800.000000</Width>
<Command>gotoandplay</Command> <Height>100.000000</Height>
<CommandParams>Normal</CommandParams> <Position>240.000061,520.000000,0.000000</Position>
</NamedFrame> <Visual>TipPanel</Visual>
</NamedFrames> </Properties>
</Timelines> </XuiLabel>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,39 +1,39 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>DebugTips</Id> <Id>DebugTips</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
<ClassOverride>CScene_DebugTips</ClassOverride> <ClassOverride>CScene_DebugTips</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>ButtonConfirm</DefaultFocus> <DefaultFocus>ButtonConfirm</DefaultFocus>
</Properties> </Properties>
<XuiLabel> <Timelines>
<Properties> <NamedFrames>
<Id>Tip</Id> <NamedFrame>
<Width>500.000000</Width> <Name>Normal</Name>
<Height>120.000000</Height> <Time>0</Time>
<Position>70.000000,256.000061,0.000000</Position> </NamedFrame>
<Visual>TipPanel</Visual> <NamedFrame>
</Properties> <Name>EndNormal</Name>
</XuiLabel> <Time>40</Time>
<Timelines> <Command>gotoplay</Command>
<NamedFrames> <TargetParameter>Normal</TargetParameter>
<NamedFrame> </NamedFrame>
<Name>Normal</Name> </NamedFrames>
<Time>0</Time> </Timelines>
</NamedFrame> <XuiLabel>
<NamedFrame> <Properties>
<Name>EndNormal</Name> <Id>Tip</Id>
<Time>40</Time> <Width>500.000000</Width>
<Command>gotoandplay</Command> <Height>120.000000</Height>
<CommandParams>Normal</CommandParams> <Position>70.000000,256.000061,0.000000</Position>
</NamedFrame> <Visual>TipPanel</Visual>
</NamedFrames> </Properties>
</Timelines> </XuiLabel>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,39 +1,39 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>DebugTips</Id> <Id>DebugTips</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
<ClassOverride>CScene_DebugTips</ClassOverride> <ClassOverride>CScene_DebugTips</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>ButtonConfirm</DefaultFocus> <DefaultFocus>ButtonConfirm</DefaultFocus>
</Properties> </Properties>
<XuiLabel> <Timelines>
<Properties> <NamedFrames>
<Id>Tip</Id> <NamedFrame>
<Width>500.000000</Width> <Name>Normal</Name>
<Height>120.000000</Height> <Time>0</Time>
<Position>70.000000,180.000061,0.000000</Position> </NamedFrame>
<Visual>TipPanel</Visual> <NamedFrame>
</Properties> <Name>EndNormal</Name>
</XuiLabel> <Time>40</Time>
<Timelines> <Command>gotoplay</Command>
<NamedFrames> <TargetParameter>Normal</TargetParameter>
<NamedFrame> </NamedFrame>
<Name>Normal</Name> </NamedFrames>
<Time>0</Time> </Timelines>
</NamedFrame> <XuiLabel>
<NamedFrame> <Properties>
<Name>EndNormal</Name> <Id>Tip</Id>
<Time>40</Time> <Width>500.000000</Width>
<Command>gotoandplay</Command> <Height>120.000000</Height>
<CommandParams>Normal</CommandParams> <Position>70.000000,180.000061,0.000000</Position>
</NamedFrame> <Visual>TipPanel</Visual>
</NamedFrames> </Properties>
</Timelines> </XuiLabel>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -1,115 +1,105 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneHowToPlayMenu</Id> <Id>SceneHowToPlayMenu</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
<ClipChildren>true</ClipChildren> <ClipChildren>true</ClipChildren>
<ClassOverride>CScene_HowToPlayMenu</ClassOverride> <ClassOverride>CScene_HowToPlayMenu</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>XuiButton1</DefaultFocus> <DefaultFocus>XuiButton1</DefaultFocus>
</Properties> </Properties>
<XuiList> <XuiList>
<Properties> <Properties>
<Id>HowToListButtons</Id> <Id>HowToListButtons</Id>
<Width>480.000000</Width> <Width>480.000000</Width>
<Height>396.000000</Height> <Height>396.000000</Height>
<Position>400.000031,200.000000,0.000000</Position> <Position>400.000031,200.000000,0.000000</Position>
<ClassOverride>CXuiCtrlPassThroughList</ClassOverride> <ClassOverride>CXuiCtrlPassThroughList</ClassOverride>
<Visual>XuiHowToList</Visual> <Visual>XuiHowToList</Visual>
<NavUp>JoinGame</NavUp> <NavUp>JoinGame</NavUp>
</Properties> </Properties>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>86.000000</Height> <Height>86.000000</Height>
<Position>16.000000,32.000000,0.000000</Position> <Position>16.000000,32.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiButton</Visual> <Visual>XuiButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>15.000000,15.000000,0.000000</Position> <Position>15.000000,15.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiMainMenuButton_List</Visual> <Visual>XuiMainMenuButton_List</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>15.000000,15.000000,0.000000</Position> <Position>15.000000,15.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiMainMenuButton_List</Visual> <Visual>XuiMainMenuButton_List</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>15.000000,15.000000,0.000000</Position> <Position>15.000000,15.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiMainMenuButton_List</Visual> <Visual>XuiMainMenuButton_List</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>15.000000,15.000000,0.000000</Position> <Position>15.000000,15.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiMainMenuButton_List</Visual> <Visual>XuiMainMenuButton_List</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>15.000000,15.000000,0.000000</Position> <Position>15.000000,15.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiMainMenuButton_List</Visual> <Visual>XuiMainMenuButton_List</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>15.000000,15.000000,0.000000</Position> <Position>15.000000,15.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiMainMenuButton_List</Visual> <Visual>XuiMainMenuButton_List</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
</XuiList> </XuiList>
<XuiControl> </XuiScene>
<Properties>
<Id>Logo</Id>
<Width>1280.000000</Width>
<Height>138.000000</Height>
<Position>0.000000,56.000000,0.000000</Position>
<DesignTime>true</DesignTime>
<Visual>MenuTitleLogo</Visual>
</Properties>
</XuiControl>
</XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,63 +1,63 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneHowToPlayMenu</Id> <Id>SceneHowToPlayMenu</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
<ClipChildren>true</ClipChildren> <ClipChildren>true</ClipChildren>
<ClassOverride>CScene_HowToPlayMenu</ClassOverride> <ClassOverride>CScene_HowToPlayMenu</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>XuiButton1</DefaultFocus> <DefaultFocus>XuiButton1</DefaultFocus>
</Properties> </Properties>
<XuiList> <XuiList>
<Properties> <Properties>
<Id>HowToListButtons</Id> <Id>HowToListButtons</Id>
<Width>480.000000</Width> <Width>480.000000</Width>
<Height>268.000000</Height> <Height>268.000000</Height>
<Position>80.000000,120.000000,0.000000</Position> <Position>80.000000,120.000000,0.000000</Position>
<ClassOverride>CXuiCtrlPassThroughList</ClassOverride> <ClassOverride>CXuiCtrlPassThroughList</ClassOverride>
<Visual>XuiHowToList480</Visual> <Visual>XuiHowToList480</Visual>
<NavUp>JoinGame</NavUp> <NavUp>JoinGame</NavUp>
</Properties> </Properties>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>86.000000</Height> <Height>86.000000</Height>
<Position>16.000000,32.000000,0.000000</Position> <Position>16.000000,32.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiButton</Visual> <Visual>XuiButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>300.000000</Width> <Width>300.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>15.000000,15.000000,0.000000</Position> <Position>15.000000,15.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiMainMenuLButton_Thin</Visual> <Visual>XuiMainMenuLButton_Thin</Visual>
<InterItemSpacing>0.000000,10.000000,0.000000</InterItemSpacing> <InterItemSpacing>0.000000,10.000000,0.000000</InterItemSpacing>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>300.000000</Width> <Width>300.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>15.000000,15.000000,0.000000</Position> <Position>15.000000,15.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiMainMenuLButton_Thin</Visual> <Visual>XuiMainMenuLButton_Thin</Visual>
<InterItemSpacing>0.000000,10.000000,0.000000</InterItemSpacing> <InterItemSpacing>0.000000,10.000000,0.000000</InterItemSpacing>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
</XuiList> </XuiList>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,50 +1,50 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>SceneHowToPlayMenu</Id> <Id>SceneHowToPlayMenu</Id>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
<ClipChildren>true</ClipChildren> <ClipChildren>true</ClipChildren>
<ClassOverride>CScene_HowToPlayMenu</ClassOverride> <ClassOverride>CScene_HowToPlayMenu</ClassOverride>
<Visual>XuiMenuScene</Visual> <Visual>XuiMenuScene</Visual>
<DefaultFocus>XuiButton1</DefaultFocus> <DefaultFocus>XuiButton1</DefaultFocus>
</Properties> </Properties>
<XuiList> <XuiList>
<Properties> <Properties>
<Id>HowToListButtons</Id> <Id>HowToListButtons</Id>
<Width>480.000000</Width> <Width>480.000000</Width>
<Height>243.000015</Height> <Height>243.000015</Height>
<Position>80.000038,35.000000,0.000000</Position> <Position>80.000038,35.000000,0.000000</Position>
<ClassOverride>CXuiCtrlPassThroughList</ClassOverride> <ClassOverride>CXuiCtrlPassThroughList</ClassOverride>
<Visual>XuiHowToList</Visual> <Visual>XuiHowToList</Visual>
<NavUp>JoinGame</NavUp> <NavUp>JoinGame</NavUp>
</Properties> </Properties>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>469.000000</Width> <Width>469.000000</Width>
<Height>86.000000</Height> <Height>86.000000</Height>
<Position>16.000000,32.000000,0.000000</Position> <Position>16.000000,32.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiButton</Visual> <Visual>XuiButton</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>50.000000</Height> <Height>50.000000</Height>
<Position>15.000000,15.000000,0.000000</Position> <Position>15.000000,15.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiMainMenuButton_List</Visual> <Visual>XuiMainMenuButton_List</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
</XuiList> </XuiList>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -1,155 +1,155 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>InGameHostOptions</Id> <Id>InGameHostOptions</Id>
<Width>454.666687</Width> <Width>454.666687</Width>
<Height>435.000000</Height> <Height>435.000000</Height>
<Position>412.666718,140.000031,0.000000</Position> <Position>412.666718,140.000031,0.000000</Position>
<ClassOverride>CScene_InGameHostOptions</ClassOverride> <ClassOverride>CScene_InGameHostOptions</ClassOverride>
<Visual>XuiScene</Visual> <Visual>XuiScene</Visual>
<DefaultFocus>GameOptions\CheckboxFireSpreads</DefaultFocus> <DefaultFocus>GameOptions\CheckboxFireSpreads</DefaultFocus>
<InterruptTransitions>2</InterruptTransitions> <InterruptTransitions>2</InterruptTransitions>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>GameOptions</Id> <Id>GameOptions</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>411.000000</Height> <Height>411.000000</Height>
<Position>0.000000,16.000000,0.000000</Position> <Position>0.000000,16.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiBlankScene</Visual> <Visual>XuiBlankScene</Visual>
</Properties> </Properties>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxNaturalRegen</Id> <Id>CheckboxNaturalRegen</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>22.000000,274.000000,0.000000</Position> <Position>22.000000,274.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxTileDrops</NavUp> <NavUp>CheckboxTileDrops</NavUp>
<NavDown>ButtonTeleportToPlayer</NavDown> <NavDown>ButtonTeleportToPlayer</NavDown>
<NavTabBackward>ButtonTeleportToPlayer</NavTabBackward> <NavTabBackward>ButtonTeleportToPlayer</NavTabBackward>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxTileDrops</Id> <Id>CheckboxTileDrops</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>22.000000,240.000000,0.000000</Position> <Position>22.000000,240.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxMobLoot</NavUp> <NavUp>CheckboxMobLoot</NavUp>
<NavDown>CheckboxNaturalRegen</NavDown> <NavDown>CheckboxNaturalRegen</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxMobLoot</Id> <Id>CheckboxMobLoot</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>22.000000,204.000000,0.000000</Position> <Position>22.000000,204.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxMobGriefing</NavUp> <NavUp>CheckboxMobGriefing</NavUp>
<NavDown>CheckboxTileDrops</NavDown> <NavDown>CheckboxTileDrops</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxMobGriefing</Id> <Id>CheckboxMobGriefing</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>22.000000,170.000000,0.000000</Position> <Position>22.000000,170.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxMobSpawning</NavUp> <NavUp>CheckboxMobSpawning</NavUp>
<NavDown>CheckboxMobLoot</NavDown> <NavDown>CheckboxMobLoot</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxMobSpawning</Id> <Id>CheckboxMobSpawning</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>22.000000,136.000000,0.000000</Position> <Position>22.000000,136.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxKeepInventory</NavUp> <NavUp>CheckboxKeepInventory</NavUp>
<NavDown>CheckboxMobGriefing</NavDown> <NavDown>CheckboxMobGriefing</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxKeepInventory</Id> <Id>CheckboxKeepInventory</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>22.000000,102.000000,0.000000</Position> <Position>22.000000,102.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxDaylightCycle</NavUp> <NavUp>CheckboxDaylightCycle</NavUp>
<NavDown>CheckboxMobSpawning</NavDown> <NavDown>CheckboxMobSpawning</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxDaylightCycle</Id> <Id>CheckboxDaylightCycle</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>22.000000,68.000000,0.000000</Position> <Position>22.000000,68.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxTNT</NavUp> <NavUp>CheckboxTNT</NavUp>
<NavDown>CheckboxKeepInventory</NavDown> <NavDown>CheckboxKeepInventory</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxTNT</Id> <Id>CheckboxTNT</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>22.000000,34.000000,0.000000</Position> <Position>22.000000,34.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxFireSpreads</NavUp> <NavUp>CheckboxFireSpreads</NavUp>
<NavDown>CheckboxDaylightCycle</NavDown> <NavDown>CheckboxDaylightCycle</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxFireSpreads</Id> <Id>CheckboxFireSpreads</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>22.000000,1.000000,0.000000</Position> <Position>22.000000,1.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavDown>CheckboxTNT</NavDown> <NavDown>CheckboxTNT</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ButtonTeleportToPlayer</Id> <Id>ButtonTeleportToPlayer</Id>
<Width>412.000000</Width> <Width>412.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>21.000000,311.000000,0.000000</Position> <Position>21.000000,311.000000,0.000000</Position>
<NavUp>CheckboxNaturalRegen</NavUp> <NavUp>CheckboxNaturalRegen</NavUp>
<NavDown>ButtonTeleportPlayerToMe</NavDown> <NavDown>ButtonTeleportPlayerToMe</NavDown>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ButtonTeleportPlayerToMe</Id> <Id>ButtonTeleportPlayerToMe</Id>
<Width>412.000000</Width> <Width>412.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>21.000000,360.000000,0.000000</Position> <Position>21.000000,360.000000,0.000000</Position>
<NavUp>ButtonTeleportToPlayer</NavUp> <NavUp>ButtonTeleportToPlayer</NavUp>
</Properties> </Properties>
</XuiButton> </XuiButton>
</XuiScene> </XuiScene>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,154 +1,154 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>InGameHostOptions</Id> <Id>InGameHostOptions</Id>
<Width>440.000000</Width> <Width>440.000000</Width>
<Height>330.000000</Height> <Height>330.000000</Height>
<Position>100.000038,75.000000,0.000000</Position> <Position>100.000038,75.000000,0.000000</Position>
<ClassOverride>CScene_InGameHostOptions</ClassOverride> <ClassOverride>CScene_InGameHostOptions</ClassOverride>
<Visual>GraphicPanel</Visual> <Visual>GraphicPanel</Visual>
<DefaultFocus>GameOptions\CheckboxFireSpreads</DefaultFocus> <DefaultFocus>GameOptions\CheckboxFireSpreads</DefaultFocus>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>GameOptions</Id> <Id>GameOptions</Id>
<Width>440.000000</Width> <Width>440.000000</Width>
<Height>330.000000</Height> <Height>330.000000</Height>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiBlankScene</Visual> <Visual>XuiBlankScene</Visual>
</Properties> </Properties>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxNaturalRegen</Id> <Id>CheckboxNaturalRegen</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,206.000000,0.000000</Position> <Position>15.000016,206.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxTileDrops</NavUp> <NavUp>CheckboxTileDrops</NavUp>
<NavDown>ButtonTeleportToPlayer</NavDown> <NavDown>ButtonTeleportToPlayer</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxTileDrops</Id> <Id>CheckboxTileDrops</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,182.000000,0.000000</Position> <Position>15.000016,182.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxMobLoot</NavUp> <NavUp>CheckboxMobLoot</NavUp>
<NavDown>CheckboxNaturalRegen</NavDown> <NavDown>CheckboxNaturalRegen</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxMobLoot</Id> <Id>CheckboxMobLoot</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,158.000000,0.000000</Position> <Position>15.000016,158.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxMobGriefing</NavUp> <NavUp>CheckboxMobGriefing</NavUp>
<NavDown>CheckboxTileDrops</NavDown> <NavDown>CheckboxTileDrops</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxMobGriefing</Id> <Id>CheckboxMobGriefing</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,134.000000,0.000000</Position> <Position>15.000016,134.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxMobSpawning</NavUp> <NavUp>CheckboxMobSpawning</NavUp>
<NavDown>CheckboxMobLoot</NavDown> <NavDown>CheckboxMobLoot</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxMobSpawning</Id> <Id>CheckboxMobSpawning</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,110.000000,0.000000</Position> <Position>15.000016,110.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxKeepInventory</NavUp> <NavUp>CheckboxKeepInventory</NavUp>
<NavDown>CheckboxMobGriefing</NavDown> <NavDown>CheckboxMobGriefing</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxKeepInventory</Id> <Id>CheckboxKeepInventory</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,86.000000,0.000000</Position> <Position>15.000016,86.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxDaylightCycle</NavUp> <NavUp>CheckboxDaylightCycle</NavUp>
<NavDown>CheckboxMobSpawning</NavDown> <NavDown>CheckboxMobSpawning</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxDaylightCycle</Id> <Id>CheckboxDaylightCycle</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,62.000000,0.000000</Position> <Position>15.000016,62.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxTNT</NavUp> <NavUp>CheckboxTNT</NavUp>
<NavDown>CheckboxKeepInventory</NavDown> <NavDown>CheckboxKeepInventory</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxTNT</Id> <Id>CheckboxTNT</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,38.000000,0.000000</Position> <Position>15.000016,38.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxFireSpreads</NavUp> <NavUp>CheckboxFireSpreads</NavUp>
<NavDown>CheckboxDaylightCycle</NavDown> <NavDown>CheckboxDaylightCycle</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxFireSpreads</Id> <Id>CheckboxFireSpreads</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,14.000000,0.000000</Position> <Position>15.000016,14.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavDown>CheckboxTNT</NavDown> <NavDown>CheckboxTNT</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ButtonTeleportToPlayer</Id> <Id>ButtonTeleportToPlayer</Id>
<Width>410.000000</Width> <Width>410.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>15.000020,232.000000,0.000000</Position> <Position>15.000020,232.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L_Thin</Visual> <Visual>XuiMainMenuButton_L_Thin</Visual>
<NavUp>CheckboxNaturalRegen</NavUp> <NavUp>CheckboxNaturalRegen</NavUp>
<NavDown>ButtonTeleportPlayerToMe</NavDown> <NavDown>ButtonTeleportPlayerToMe</NavDown>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ButtonTeleportPlayerToMe</Id> <Id>ButtonTeleportPlayerToMe</Id>
<Width>410.000000</Width> <Width>410.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>15.000020,276.000000,0.000000</Position> <Position>15.000020,276.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L_Thin</Visual> <Visual>XuiMainMenuButton_L_Thin</Visual>
<NavUp>ButtonTeleportToPlayer</NavUp> <NavUp>ButtonTeleportToPlayer</NavUp>
</Properties> </Properties>
</XuiButton> </XuiButton>
</XuiScene> </XuiScene>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,154 +1,154 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>InGameHostOptions</Id> <Id>InGameHostOptions</Id>
<Width>440.000000</Width> <Width>440.000000</Width>
<Height>330.000000</Height> <Height>330.000000</Height>
<Position>100.000038,0.000000,0.000000</Position> <Position>100.000038,0.000000,0.000000</Position>
<ClassOverride>CScene_InGameHostOptions</ClassOverride> <ClassOverride>CScene_InGameHostOptions</ClassOverride>
<Visual>GraphicPanel</Visual> <Visual>GraphicPanel</Visual>
<DefaultFocus>GameOptions\CheckboxFireSpreads</DefaultFocus> <DefaultFocus>GameOptions\CheckboxFireSpreads</DefaultFocus>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>GameOptions</Id> <Id>GameOptions</Id>
<Width>440.000000</Width> <Width>440.000000</Width>
<Height>330.000000</Height> <Height>330.000000</Height>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiBlankScene</Visual> <Visual>XuiBlankScene</Visual>
</Properties> </Properties>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxNaturalRegen</Id> <Id>CheckboxNaturalRegen</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,206.000000,0.000000</Position> <Position>15.000016,206.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxTileDrops</NavUp> <NavUp>CheckboxTileDrops</NavUp>
<NavDown>ButtonTeleportToPlayer</NavDown> <NavDown>ButtonTeleportToPlayer</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxTileDrops</Id> <Id>CheckboxTileDrops</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,182.000000,0.000000</Position> <Position>15.000016,182.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxMobLoot</NavUp> <NavUp>CheckboxMobLoot</NavUp>
<NavDown>CheckboxNaturalRegen</NavDown> <NavDown>CheckboxNaturalRegen</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxMobLoot</Id> <Id>CheckboxMobLoot</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,158.000000,0.000000</Position> <Position>15.000016,158.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxMobGriefing</NavUp> <NavUp>CheckboxMobGriefing</NavUp>
<NavDown>CheckboxTileDrops</NavDown> <NavDown>CheckboxTileDrops</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxMobGriefing</Id> <Id>CheckboxMobGriefing</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,134.000000,0.000000</Position> <Position>15.000016,134.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxMobSpawning</NavUp> <NavUp>CheckboxMobSpawning</NavUp>
<NavDown>CheckboxMobLoot</NavDown> <NavDown>CheckboxMobLoot</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxMobSpawning</Id> <Id>CheckboxMobSpawning</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,110.000000,0.000000</Position> <Position>15.000016,110.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxKeepInventory</NavUp> <NavUp>CheckboxKeepInventory</NavUp>
<NavDown>CheckboxMobGriefing</NavDown> <NavDown>CheckboxMobGriefing</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxKeepInventory</Id> <Id>CheckboxKeepInventory</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,86.000000,0.000000</Position> <Position>15.000016,86.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxDaylightCycle</NavUp> <NavUp>CheckboxDaylightCycle</NavUp>
<NavDown>CheckboxMobSpawning</NavDown> <NavDown>CheckboxMobSpawning</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxDaylightCycle</Id> <Id>CheckboxDaylightCycle</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,62.000000,0.000000</Position> <Position>15.000016,62.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxTNT</NavUp> <NavUp>CheckboxTNT</NavUp>
<NavDown>CheckboxKeepInventory</NavDown> <NavDown>CheckboxKeepInventory</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxTNT</Id> <Id>CheckboxTNT</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,38.000000,0.000000</Position> <Position>15.000016,38.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxFireSpreads</NavUp> <NavUp>CheckboxFireSpreads</NavUp>
<NavDown>CheckboxDaylightCycle</NavDown> <NavDown>CheckboxDaylightCycle</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxFireSpreads</Id> <Id>CheckboxFireSpreads</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>24.000000</Height> <Height>24.000000</Height>
<Position>15.000016,14.000000,0.000000</Position> <Position>15.000016,14.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavDown>CheckboxTNT</NavDown> <NavDown>CheckboxTNT</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ButtonTeleportToPlayer</Id> <Id>ButtonTeleportToPlayer</Id>
<Width>410.000000</Width> <Width>410.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>15.000020,232.000000,0.000000</Position> <Position>15.000020,232.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L_Thin</Visual> <Visual>XuiMainMenuButton_L_Thin</Visual>
<NavUp>CheckboxNaturalRegen</NavUp> <NavUp>CheckboxNaturalRegen</NavUp>
<NavDown>ButtonTeleportPlayerToMe</NavDown> <NavDown>ButtonTeleportPlayerToMe</NavDown>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ButtonTeleportPlayerToMe</Id> <Id>ButtonTeleportPlayerToMe</Id>
<Width>410.000000</Width> <Width>410.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>15.000020,276.000000,0.000000</Position> <Position>15.000020,276.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L_Thin</Visual> <Visual>XuiMainMenuButton_L_Thin</Visual>
<NavUp>ButtonTeleportToPlayer</NavUp> <NavUp>ButtonTeleportToPlayer</NavUp>
</Properties> </Properties>
</XuiButton> </XuiButton>
</XuiScene> </XuiScene>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,163 +1,163 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>InGamePlayerOptions</Id> <Id>InGamePlayerOptions</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>470.000000</Height> <Height>470.000000</Height>
<Position>414.000000,125.000000,0.000000</Position> <Position>414.000000,125.000000,0.000000</Position>
<ClassOverride>CScene_InGamePlayerOptions</ClassOverride> <ClassOverride>CScene_InGamePlayerOptions</ClassOverride>
<Visual>XuiScene</Visual> <Visual>XuiScene</Visual>
<DefaultFocus>CheckboxBuildAndMine</DefaultFocus> <DefaultFocus>CheckboxBuildAndMine</DefaultFocus>
</Properties> </Properties>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxHostInvisible</Id> <Id>CheckboxHostInvisible</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>20.000000,362.000000,0.000000</Position> <Position>20.000000,362.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxHostHunger</NavUp> <NavUp>CheckboxHostHunger</NavUp>
<NavDown>ButtonKick</NavDown> <NavDown>ButtonKick</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxHostHunger</Id> <Id>CheckboxHostHunger</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>20.000000,328.000000,0.000000</Position> <Position>20.000000,328.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxHostFly</NavUp> <NavUp>CheckboxHostFly</NavUp>
<NavDown>CheckboxHostInvisible</NavDown> <NavDown>CheckboxHostInvisible</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxHostFly</Id> <Id>CheckboxHostFly</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>20.000000,294.000000,0.000000</Position> <Position>20.000000,294.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxTeleport</NavUp> <NavUp>CheckboxTeleport</NavUp>
<NavDown>CheckboxHostHunger</NavDown> <NavDown>CheckboxHostHunger</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ButtonKick</Id> <Id>ButtonKick</Id>
<Width>412.000000</Width> <Width>412.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>20.000013,410.000000,0.000000</Position> <Position>20.000013,410.000000,0.000000</Position>
<NavUp>CheckboxHostInvisible</NavUp> <NavUp>CheckboxHostInvisible</NavUp>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxTeleport</Id> <Id>CheckboxTeleport</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>20.000000,258.000000,0.000000</Position> <Position>20.000000,258.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxOp</NavUp> <NavUp>CheckboxOp</NavUp>
<NavDown>CheckboxHostFly</NavDown> <NavDown>CheckboxHostFly</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxOp</Id> <Id>CheckboxOp</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>20.000000,224.000000,0.000000</Position> <Position>20.000000,224.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxAttackAnimals</NavUp> <NavUp>CheckboxAttackAnimals</NavUp>
<NavDown>CheckboxTeleport</NavDown> <NavDown>CheckboxTeleport</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxAttackAnimals</Id> <Id>CheckboxAttackAnimals</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>20.000000,190.000000,0.000000</Position> <Position>20.000000,190.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxAttackPlayers</NavUp> <NavUp>CheckboxAttackPlayers</NavUp>
<NavDown>CheckboxOp</NavDown> <NavDown>CheckboxOp</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxAttackPlayers</Id> <Id>CheckboxAttackPlayers</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>20.000000,156.000000,0.000000</Position> <Position>20.000000,156.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxUseContainers</NavUp> <NavUp>CheckboxUseContainers</NavUp>
<NavDown>CheckboxAttackAnimals</NavDown> <NavDown>CheckboxAttackAnimals</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxUseContainers</Id> <Id>CheckboxUseContainers</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>20.000000,122.000000,0.000000</Position> <Position>20.000000,122.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxUseDoorsAndSwitches</NavUp> <NavUp>CheckboxUseDoorsAndSwitches</NavUp>
<NavDown>CheckboxAttackPlayers</NavDown> <NavDown>CheckboxAttackPlayers</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxUseDoorsAndSwitches</Id> <Id>CheckboxUseDoorsAndSwitches</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>20.000000,88.000000,0.000000</Position> <Position>20.000000,88.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavUp>CheckboxBuildAndMine</NavUp> <NavUp>CheckboxBuildAndMine</NavUp>
<NavDown>CheckboxUseContainers</NavDown> <NavDown>CheckboxUseContainers</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxBuildAndMine</Id> <Id>CheckboxBuildAndMine</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>34.000000</Height> <Height>34.000000</Height>
<Position>20.000000,54.000000,0.000000</Position> <Position>20.000000,54.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckbox</Visual> <Visual>XuiCheckbox</Visual>
<NavDown>CheckboxUseDoorsAndSwitches</NavDown> <NavDown>CheckboxUseDoorsAndSwitches</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Gamertag</Id> <Id>Gamertag</Id>
<Width>362.000000</Width> <Width>362.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>56.000000,14.000000,0.000000</Position> <Position>56.000000,14.000000,0.000000</Position>
<Visual>XuiLabelDarkLeftWrap</Visual> <Visual>XuiLabelDarkLeftWrap</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiControl> <XuiControl>
<Properties> <Properties>
<Id>Icon</Id> <Id>Icon</Id>
<Width>40.000000</Width> <Width>40.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>16.000000,14.000000,0.000000</Position> <Position>16.000000,14.000000,0.000000</Position>
<Visual>PlayerColourIcon</Visual> <Visual>PlayerColourIcon</Visual>
</Properties> </Properties>
</XuiControl> </XuiControl>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,164 +1,164 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>480.000000</Height> <Height>480.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>InGamePlayerOptions</Id> <Id>InGamePlayerOptions</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>335.000000</Height> <Height>335.000000</Height>
<Position>95.000061,72.500015,0.000000</Position> <Position>95.000061,72.500015,0.000000</Position>
<ClassOverride>CScene_InGamePlayerOptions</ClassOverride> <ClassOverride>CScene_InGamePlayerOptions</ClassOverride>
<Visual>GraphicPanel</Visual> <Visual>GraphicPanel</Visual>
<DefaultFocus>CheckboxBuildAndMine</DefaultFocus> <DefaultFocus>CheckboxBuildAndMine</DefaultFocus>
</Properties> </Properties>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxHostInvisible</Id> <Id>CheckboxHostInvisible</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,258.000000,0.000000</Position> <Position>20.000000,258.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxHostHunger</NavUp> <NavUp>CheckboxHostHunger</NavUp>
<NavDown>ButtonKick</NavDown> <NavDown>ButtonKick</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxHostHunger</Id> <Id>CheckboxHostHunger</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,236.000000,0.000000</Position> <Position>20.000000,236.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxHostFly</NavUp> <NavUp>CheckboxHostFly</NavUp>
<NavDown>CheckboxHostInvisible</NavDown> <NavDown>CheckboxHostInvisible</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxHostFly</Id> <Id>CheckboxHostFly</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,214.000000,0.000000</Position> <Position>20.000000,214.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxTeleport</NavUp> <NavUp>CheckboxTeleport</NavUp>
<NavDown>CheckboxHostHunger</NavDown> <NavDown>CheckboxHostHunger</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ButtonKick</Id> <Id>ButtonKick</Id>
<Width>408.000000</Width> <Width>408.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>20.000013,284.000000,0.000000</Position> <Position>20.000013,284.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L_Thin</Visual> <Visual>XuiMainMenuButton_L_Thin</Visual>
<NavUp>CheckboxHostInvisible</NavUp> <NavUp>CheckboxHostInvisible</NavUp>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxTeleport</Id> <Id>CheckboxTeleport</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,191.000000,0.000000</Position> <Position>20.000000,191.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxOp</NavUp> <NavUp>CheckboxOp</NavUp>
<NavDown>CheckboxHostFly</NavDown> <NavDown>CheckboxHostFly</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxOp</Id> <Id>CheckboxOp</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,169.000000,0.000000</Position> <Position>20.000000,169.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxAttackAnimals</NavUp> <NavUp>CheckboxAttackAnimals</NavUp>
<NavDown>CheckboxTeleport</NavDown> <NavDown>CheckboxTeleport</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxAttackAnimals</Id> <Id>CheckboxAttackAnimals</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,147.000000,0.000000</Position> <Position>20.000000,147.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxAttackPlayers</NavUp> <NavUp>CheckboxAttackPlayers</NavUp>
<NavDown>CheckboxOp</NavDown> <NavDown>CheckboxOp</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxAttackPlayers</Id> <Id>CheckboxAttackPlayers</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,125.000000,0.000000</Position> <Position>20.000000,125.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxUseContainers</NavUp> <NavUp>CheckboxUseContainers</NavUp>
<NavDown>CheckboxAttackAnimals</NavDown> <NavDown>CheckboxAttackAnimals</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxUseContainers</Id> <Id>CheckboxUseContainers</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,103.000000,0.000000</Position> <Position>20.000000,103.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxUseDoorsAndSwitches</NavUp> <NavUp>CheckboxUseDoorsAndSwitches</NavUp>
<NavDown>CheckboxAttackPlayers</NavDown> <NavDown>CheckboxAttackPlayers</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxUseDoorsAndSwitches</Id> <Id>CheckboxUseDoorsAndSwitches</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,81.000000,0.000000</Position> <Position>20.000000,81.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxBuildAndMine</NavUp> <NavUp>CheckboxBuildAndMine</NavUp>
<NavDown>CheckboxUseContainers</NavDown> <NavDown>CheckboxUseContainers</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxBuildAndMine</Id> <Id>CheckboxBuildAndMine</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,59.000000,0.000000</Position> <Position>20.000000,59.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavDown>CheckboxUseDoorsAndSwitches</NavDown> <NavDown>CheckboxUseDoorsAndSwitches</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Gamertag</Id> <Id>Gamertag</Id>
<Width>362.000000</Width> <Width>362.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>56.000000,14.000000,0.000000</Position> <Position>56.000000,14.000000,0.000000</Position>
<Visual>XuiLabelDarkLeftWrap</Visual> <Visual>XuiLabelDarkLeftWrap</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiControl> <XuiControl>
<Properties> <Properties>
<Id>Icon</Id> <Id>Icon</Id>
<Width>40.000000</Width> <Width>40.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>16.000000,14.000000,0.000000</Position> <Position>16.000000,14.000000,0.000000</Position>
<Visual>PlayerColourIcon</Visual> <Visual>PlayerColourIcon</Visual>
</Properties> </Properties>
</XuiControl> </XuiControl>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,164 +1,164 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>640.000000</Width> <Width>640.000000</Width>
<Height>360.000000</Height> <Height>360.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>InGamePlayerOptions</Id> <Id>InGamePlayerOptions</Id>
<Width>450.000000</Width> <Width>450.000000</Width>
<Height>335.000000</Height> <Height>335.000000</Height>
<Position>95.000061,-7.000000,0.000000</Position> <Position>95.000061,-7.000000,0.000000</Position>
<ClassOverride>CScene_InGamePlayerOptions</ClassOverride> <ClassOverride>CScene_InGamePlayerOptions</ClassOverride>
<Visual>GraphicPanel</Visual> <Visual>GraphicPanel</Visual>
<DefaultFocus>CheckboxBuildAndMine</DefaultFocus> <DefaultFocus>CheckboxBuildAndMine</DefaultFocus>
</Properties> </Properties>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxHostInvisible</Id> <Id>CheckboxHostInvisible</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,258.000000,0.000000</Position> <Position>20.000000,258.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxHostHunger</NavUp> <NavUp>CheckboxHostHunger</NavUp>
<NavDown>ButtonKick</NavDown> <NavDown>ButtonKick</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxHostHunger</Id> <Id>CheckboxHostHunger</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,236.000000,0.000000</Position> <Position>20.000000,236.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxHostFly</NavUp> <NavUp>CheckboxHostFly</NavUp>
<NavDown>CheckboxHostInvisible</NavDown> <NavDown>CheckboxHostInvisible</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxHostFly</Id> <Id>CheckboxHostFly</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,214.000000,0.000000</Position> <Position>20.000000,214.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxTeleport</NavUp> <NavUp>CheckboxTeleport</NavUp>
<NavDown>CheckboxHostHunger</NavDown> <NavDown>CheckboxHostHunger</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>ButtonKick</Id> <Id>ButtonKick</Id>
<Width>410.000000</Width> <Width>410.000000</Width>
<Height>36.000000</Height> <Height>36.000000</Height>
<Position>20.000000,284.000000,0.000000</Position> <Position>20.000000,284.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L_Thin</Visual> <Visual>XuiMainMenuButton_L_Thin</Visual>
<NavUp>CheckboxHostInvisible</NavUp> <NavUp>CheckboxHostInvisible</NavUp>
</Properties> </Properties>
</XuiButton> </XuiButton>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxTeleport</Id> <Id>CheckboxTeleport</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,191.000000,0.000000</Position> <Position>20.000000,191.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxOp</NavUp> <NavUp>CheckboxOp</NavUp>
<NavDown>CheckboxHostFly</NavDown> <NavDown>CheckboxHostFly</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxOp</Id> <Id>CheckboxOp</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,169.000000,0.000000</Position> <Position>20.000000,169.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxAttackAnimals</NavUp> <NavUp>CheckboxAttackAnimals</NavUp>
<NavDown>CheckboxTeleport</NavDown> <NavDown>CheckboxTeleport</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxAttackAnimals</Id> <Id>CheckboxAttackAnimals</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,147.000000,0.000000</Position> <Position>20.000000,147.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxAttackPlayers</NavUp> <NavUp>CheckboxAttackPlayers</NavUp>
<NavDown>CheckboxOp</NavDown> <NavDown>CheckboxOp</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxAttackPlayers</Id> <Id>CheckboxAttackPlayers</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,125.000000,0.000000</Position> <Position>20.000000,125.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxUseContainers</NavUp> <NavUp>CheckboxUseContainers</NavUp>
<NavDown>CheckboxAttackAnimals</NavDown> <NavDown>CheckboxAttackAnimals</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxUseContainers</Id> <Id>CheckboxUseContainers</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,103.000000,0.000000</Position> <Position>20.000000,103.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxUseDoorsAndSwitches</NavUp> <NavUp>CheckboxUseDoorsAndSwitches</NavUp>
<NavDown>CheckboxAttackPlayers</NavDown> <NavDown>CheckboxAttackPlayers</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxUseDoorsAndSwitches</Id> <Id>CheckboxUseDoorsAndSwitches</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,81.000000,0.000000</Position> <Position>20.000000,81.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavUp>CheckboxBuildAndMine</NavUp> <NavUp>CheckboxBuildAndMine</NavUp>
<NavDown>CheckboxUseContainers</NavDown> <NavDown>CheckboxUseContainers</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiCheckbox> <XuiCheckbox>
<Properties> <Properties>
<Id>CheckboxBuildAndMine</Id> <Id>CheckboxBuildAndMine</Id>
<Width>402.000000</Width> <Width>402.000000</Width>
<Height>22.000000</Height> <Height>22.000000</Height>
<Position>20.000000,59.000000,0.000000</Position> <Position>20.000000,59.000000,0.000000</Position>
<Anchor>2</Anchor> <Anchor>2</Anchor>
<Visual>XuiCheckboxSmall</Visual> <Visual>XuiCheckboxSmall</Visual>
<NavDown>CheckboxUseDoorsAndSwitches</NavDown> <NavDown>CheckboxUseDoorsAndSwitches</NavDown>
</Properties> </Properties>
</XuiCheckbox> </XuiCheckbox>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Gamertag</Id> <Id>Gamertag</Id>
<Width>362.000000</Width> <Width>362.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>56.000000,14.000000,0.000000</Position> <Position>56.000000,14.000000,0.000000</Position>
<Visual>XuiLabelDarkLeftWrap</Visual> <Visual>XuiLabelDarkLeftWrap</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiControl> <XuiControl>
<Properties> <Properties>
<Id>Icon</Id> <Id>Icon</Id>
<Width>40.000000</Width> <Width>40.000000</Width>
<Height>40.000000</Height> <Height>40.000000</Height>
<Position>16.000000,14.000000,0.000000</Position> <Position>16.000000,14.000000,0.000000</Position>
<Visual>PlayerColourIcon</Visual> <Visual>PlayerColourIcon</Visual>
</Properties> </Properties>
</XuiControl> </XuiControl>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>
@@ -1,78 +1,78 @@
<XuiCanvas version="000c"> <XuiCanvas version="000c">
<Properties> <Properties>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
</Properties> </Properties>
<XuiScene> <XuiScene>
<Properties> <Properties>
<Id>InGameInfo</Id> <Id>InGameInfo</Id>
<Width>1280.000000</Width> <Width>1280.000000</Width>
<Height>720.000000</Height> <Height>720.000000</Height>
<ClassOverride>CScene_InGameInfo</ClassOverride> <ClassOverride>CScene_InGameInfo</ClassOverride>
<Visual>XuiBlankScene</Visual> <Visual>XuiBlankScene</Visual>
<DefaultFocus>GamePlayers</DefaultFocus> <DefaultFocus>GamePlayers</DefaultFocus>
</Properties> </Properties>
<XuiList> <XuiList>
<Properties> <Properties>
<Id>GamePlayers</Id> <Id>GamePlayers</Id>
<Width>500.000000</Width> <Width>500.000000</Width>
<Height>336.000000</Height> <Height>336.000000</Height>
<Position>390.000000,192.000046,0.000000</Position> <Position>390.000000,192.000046,0.000000</Position>
<ClassOverride>CXuiCtrlPassThroughList</ClassOverride> <ClassOverride>CXuiCtrlPassThroughList</ClassOverride>
<Visual>XuiPlayerList</Visual> <Visual>XuiPlayerList</Visual>
<NavUp>GameOptionsButton</NavUp> <NavUp>GameOptionsButton</NavUp>
</Properties> </Properties>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Height>60.000000</Height> <Height>60.000000</Height>
<Position>20.000000,50.000000,0.000000</Position> <Position>20.000000,50.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiListButton_L</Visual> <Visual>XuiListButton_L</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Height>60.000000</Height> <Height>60.000000</Height>
<Position>20.000000,46.000000,0.000000</Position> <Position>20.000000,46.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiPlayerListButton_L</Visual> <Visual>XuiPlayerListButton_L</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
<XuiListItem> <XuiListItem>
<Properties> <Properties>
<Id>control_ListItem</Id> <Id>control_ListItem</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Height>60.000000</Height> <Height>60.000000</Height>
<Position>20.000000,46.000000,0.000000</Position> <Position>20.000000,46.000000,0.000000</Position>
<Anchor>5</Anchor> <Anchor>5</Anchor>
<Show>false</Show> <Show>false</Show>
<Visual>XuiPlayerListButton_L</Visual> <Visual>XuiPlayerListButton_L</Visual>
</Properties> </Properties>
</XuiListItem> </XuiListItem>
</XuiList> </XuiList>
<XuiLabel> <XuiLabel>
<Properties> <Properties>
<Id>Title</Id> <Id>Title</Id>
<Width>400.000000</Width> <Width>400.000000</Width>
<Position>412.000000,202.000046,0.000000</Position> <Position>412.000000,202.000046,0.000000</Position>
<Visual>XuiLabelDarkLeftWrap18</Visual> <Visual>XuiLabelDarkLeftWrap18</Visual>
</Properties> </Properties>
</XuiLabel> </XuiLabel>
<XuiButton> <XuiButton>
<Properties> <Properties>
<Id>GameOptionsButton</Id> <Id>GameOptionsButton</Id>
<Width>500.000000</Width> <Width>500.000000</Width>
<Height>60.000000</Height> <Height>60.000000</Height>
<Position>390.000000,122.000000,0.000000</Position> <Position>390.000000,122.000000,0.000000</Position>
<Visual>XuiMainMenuButton_L</Visual> <Visual>XuiMainMenuButton_L</Visual>
<NavDown>GamePlayers</NavDown> <NavDown>GamePlayers</NavDown>
</Properties> </Properties>
</XuiButton> </XuiButton>
</XuiScene> </XuiScene>
</XuiCanvas> </XuiCanvas>

Some files were not shown because too many files have changed in this diff Show More