Add achievement background images
Co-Authored-By: Vlad Loktionov <13555921+VladWinner@users.noreply.github.com>
This commit is contained in:
parent
eb6781e406
commit
a06044eff2
@ -1,5 +1,5 @@
|
|||||||
LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
||||||
local menuwidth = 1129
|
local menuwidth = 500
|
||||||
local menu = LUI.MenuTemplate.new(root, {
|
local menu = LUI.MenuTemplate.new(root, {
|
||||||
menu_title = "@LUA_MENU_ACHIEVEMENTS",
|
menu_title = "@LUA_MENU_ACHIEVEMENTS",
|
||||||
exclusiveController = 0,
|
exclusiveController = 0,
|
||||||
@ -9,7 +9,58 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
uppercase_title = true
|
uppercase_title = true
|
||||||
})
|
})
|
||||||
|
|
||||||
local itemwidth = 80
|
local black_state = CoD.CreateState(nil, nil, nil, nil, CoD.AnchorTypes.All)
|
||||||
|
black_state.red = 0
|
||||||
|
black_state.blue = 0
|
||||||
|
black_state.green = 0
|
||||||
|
black_state.alpha = 0
|
||||||
|
black_state.left = -100
|
||||||
|
black_state.right = 100
|
||||||
|
black_state.top = -100
|
||||||
|
black_state.bottom = 100
|
||||||
|
|
||||||
|
local black = LUI.UIImage.new(black_state)
|
||||||
|
black:setPriority(-1000)
|
||||||
|
|
||||||
|
black:registerAnimationState("BlackScreen", {
|
||||||
|
alpha = 1
|
||||||
|
})
|
||||||
|
|
||||||
|
black:registerAnimationState("Faded", {
|
||||||
|
alpha = 0
|
||||||
|
})
|
||||||
|
|
||||||
|
menu:addElement(black)
|
||||||
|
|
||||||
|
local currentbackground = nil
|
||||||
|
local changebackground = function(background, isvideobg)
|
||||||
|
if (currentbackground == background) then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
currentbackground = background
|
||||||
|
|
||||||
|
if (isvideobg) then
|
||||||
|
PersistentBackground.ChangeBackground(nil, background)
|
||||||
|
else
|
||||||
|
PersistentBackground.ChangeBackground(background, "")
|
||||||
|
PersistentBackground.ChangeBackground(background, nil)
|
||||||
|
end
|
||||||
|
|
||||||
|
black:animateInSequence( {
|
||||||
|
{
|
||||||
|
"BlackScreen",
|
||||||
|
0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"Faded",
|
||||||
|
500
|
||||||
|
}
|
||||||
|
})
|
||||||
|
end
|
||||||
|
|
||||||
|
local itemheight = 80
|
||||||
|
local itemwidth = menuwidth
|
||||||
local itemspacing = 10
|
local itemspacing = 10
|
||||||
local maxrowelements = 1
|
local maxrowelements = 1
|
||||||
|
|
||||||
@ -18,14 +69,13 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
local currentrow = LUI.UIElement.new({
|
local currentrow = LUI.UIElement.new({
|
||||||
topAnchor = true,
|
topAnchor = true,
|
||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
width = itemwidth * maxrowelements,
|
width = itemheight * maxrowelements,
|
||||||
height = itemwidth,
|
height = itemheight,
|
||||||
})
|
})
|
||||||
|
|
||||||
menu.list.currentrow = currentrow
|
menu.list.currentrow = currentrow
|
||||||
menu.list:addElement(currentrow)
|
menu.list:addElement(currentrow)
|
||||||
menu.list.currentrow:makeFocusable()
|
menu.list.currentrow:makeFocusable()
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
newrow()
|
newrow()
|
||||||
@ -34,9 +84,9 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
local container = LUI.UIElement.new({
|
local container = LUI.UIElement.new({
|
||||||
topAnchor = true,
|
topAnchor = true,
|
||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
width = itemwidth,
|
width = itemheight,
|
||||||
height = itemwidth,
|
height = itemheight,
|
||||||
left = rowelements * (itemwidth + itemspacing)
|
left = rowelements * (itemheight + itemspacing)
|
||||||
})
|
})
|
||||||
container:addElement(element)
|
container:addElement(element)
|
||||||
container:makeFocusable()
|
container:makeFocusable()
|
||||||
@ -60,8 +110,8 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
local btnbg = LUI.UIImage.new({
|
local btnbg = LUI.UIImage.new({
|
||||||
topAnchor = true,
|
topAnchor = true,
|
||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
width = menuwidth,
|
width = itemwidth,
|
||||||
height = itemwidth,
|
height = itemheight,
|
||||||
material = RegisterMaterial("h2_btn_unfocused")
|
material = RegisterMaterial("h2_btn_unfocused")
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -84,7 +134,7 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
topAnchor = true,
|
topAnchor = true,
|
||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
width = 10,
|
width = 10,
|
||||||
height = itemwidth,
|
height = itemheight,
|
||||||
material = RegisterMaterial("depot_button_rarity_strip_" .. rarityname)
|
material = RegisterMaterial("depot_button_rarity_strip_" .. rarityname)
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -101,8 +151,8 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
local glow = LUI.UIImage.new({
|
local glow = LUI.UIImage.new({
|
||||||
topAnchor = true,
|
topAnchor = true,
|
||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
width = menuwidth,
|
width = itemwidth,
|
||||||
height = itemwidth,
|
height = itemheight,
|
||||||
material = RegisterMaterial("depot_button_rarity_glow_" .. rarityname)
|
material = RegisterMaterial("depot_button_rarity_glow_" .. rarityname)
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -117,8 +167,8 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
local glow2 = LUI.UIImage.new({
|
local glow2 = LUI.UIImage.new({
|
||||||
topAnchor = true,
|
topAnchor = true,
|
||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
width = menuwidth,
|
width = itemwidth,
|
||||||
height = itemwidth,
|
height = itemheight,
|
||||||
material = RegisterMaterial("depot_button_rarity_glow_" .. rarityname)
|
material = RegisterMaterial("depot_button_rarity_glow_" .. rarityname)
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -136,8 +186,8 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
local achievementcontainer = LUI.UIElement.new({
|
local achievementcontainer = LUI.UIElement.new({
|
||||||
topAnchor = true,
|
topAnchor = true,
|
||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
width = menuwidth,
|
width = itemwidth,
|
||||||
height = itemwidth,
|
height = itemheight,
|
||||||
})
|
})
|
||||||
|
|
||||||
local image = LUI.UIImage.new({
|
local image = LUI.UIImage.new({
|
||||||
@ -145,8 +195,8 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
top = itemspacing / 2,
|
top = itemspacing / 2,
|
||||||
left = itemspacing / 2 + 10,
|
left = itemspacing / 2 + 10,
|
||||||
width = itemwidth - itemspacing,
|
width = itemheight - itemspacing,
|
||||||
height = itemwidth - itemspacing,
|
height = itemheight - itemspacing,
|
||||||
material = RegisterMaterial("trophy_" .. i)
|
material = RegisterMaterial("trophy_" .. i)
|
||||||
})
|
})
|
||||||
|
|
||||||
@ -155,17 +205,17 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
top = itemspacing / 2 + 15,
|
top = itemspacing / 2 + 15,
|
||||||
left = itemspacing / 2 + 15 + 10,
|
left = itemspacing / 2 + 15 + 10,
|
||||||
width = itemwidth - itemspacing - 30,
|
width = itemheight - itemspacing - 30,
|
||||||
height = itemwidth - itemspacing - 30,
|
height = itemheight - itemspacing - 30,
|
||||||
material = RegisterMaterial("icon_lock_mini")
|
material = RegisterMaterial("icon_lock_mini")
|
||||||
})
|
})
|
||||||
|
|
||||||
local textwidth = menuwidth - itemwidth - itemspacing * 2
|
local textwidth = itemwidth - itemheight - itemspacing * 2
|
||||||
local title = LUI.UIText.new({
|
local title = LUI.UIText.new({
|
||||||
topAnchor = true,
|
topAnchor = true,
|
||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
top = itemspacing + 5,
|
top = itemspacing + 5,
|
||||||
left = itemwidth + 5 + 10,
|
left = itemheight + 5 + 10,
|
||||||
color = {
|
color = {
|
||||||
r = 0.7,
|
r = 0.7,
|
||||||
g = 0.7,
|
g = 0.7,
|
||||||
@ -180,7 +230,7 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
topAnchor = true,
|
topAnchor = true,
|
||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
top = itemspacing + CoD.TextSettings.Font23.Height + 10,
|
top = itemspacing + CoD.TextSettings.Font23.Height + 10,
|
||||||
left = itemwidth + 5 + 10,
|
left = itemheight + 5 + 10,
|
||||||
width = textwidth,
|
width = textwidth,
|
||||||
alignment = LUI.Alignment.Left,
|
alignment = LUI.Alignment.Left,
|
||||||
color = {
|
color = {
|
||||||
@ -208,9 +258,16 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
raritystrip:animateToState("hide")
|
raritystrip:animateToState("hide")
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local background = achievements.getbackground(i)
|
||||||
achievementcontainer:registerEventHandler("mouseenter", function()
|
achievementcontainer:registerEventHandler("mouseenter", function()
|
||||||
Engine.PlaySound(CoD.SFX.MouseOver)
|
Engine.PlaySound(CoD.SFX.MouseOver)
|
||||||
|
|
||||||
|
if (background ~= nil) then
|
||||||
|
changebackground(background, false)
|
||||||
|
else
|
||||||
|
changebackground("sp_menus_bg_regular", true)
|
||||||
|
end
|
||||||
|
|
||||||
if (locked) then
|
if (locked) then
|
||||||
btnbg:setImage(RegisterMaterial("h2_btn_focused_locked"))
|
btnbg:setImage(RegisterMaterial("h2_btn_focused_locked"))
|
||||||
else
|
else
|
||||||
@ -258,7 +315,7 @@ LUI.MenuBuilder.registerType("achievements_menu", function(root, controller)
|
|||||||
})
|
})
|
||||||
|
|
||||||
local createprogressbar = function()
|
local createprogressbar = function()
|
||||||
local barwidth = menuwidth + 17
|
local barwidth = itemwidth + 17
|
||||||
local progressbar = LUI.UIElement.new({
|
local progressbar = LUI.UIElement.new({
|
||||||
bottomAnchor = true,
|
bottomAnchor = true,
|
||||||
leftAnchor = true,
|
leftAnchor = true,
|
||||||
|
@ -92,5 +92,57 @@ material,trophy_49
|
|||||||
material,trophy_50
|
material,trophy_50
|
||||||
material,trophy_51
|
material,trophy_51
|
||||||
material,trophy_52
|
material,trophy_52
|
||||||
|
|
||||||
|
material,achievement_bg_1
|
||||||
|
material,achievement_bg_2
|
||||||
|
material,achievement_bg_3
|
||||||
|
material,achievement_bg_4
|
||||||
|
material,achievement_bg_5
|
||||||
|
material,achievement_bg_6
|
||||||
|
material,achievement_bg_7
|
||||||
|
material,achievement_bg_8
|
||||||
|
material,achievement_bg_9
|
||||||
|
material,achievement_bg_10
|
||||||
|
material,achievement_bg_11
|
||||||
|
material,achievement_bg_12
|
||||||
|
material,achievement_bg_13
|
||||||
|
material,achievement_bg_14
|
||||||
|
material,achievement_bg_15
|
||||||
|
material,achievement_bg_16
|
||||||
|
material,achievement_bg_17
|
||||||
|
material,achievement_bg_18
|
||||||
|
material,achievement_bg_19
|
||||||
|
material,achievement_bg_20
|
||||||
|
material,achievement_bg_21
|
||||||
|
material,achievement_bg_22
|
||||||
|
material,achievement_bg_23
|
||||||
|
material,achievement_bg_24
|
||||||
|
material,achievement_bg_25
|
||||||
|
material,achievement_bg_26
|
||||||
|
material,achievement_bg_27
|
||||||
|
material,achievement_bg_28
|
||||||
|
material,achievement_bg_29
|
||||||
|
material,achievement_bg_30
|
||||||
|
material,achievement_bg_31
|
||||||
|
material,achievement_bg_32
|
||||||
|
material,achievement_bg_33
|
||||||
|
material,achievement_bg_34
|
||||||
|
material,achievement_bg_35
|
||||||
|
material,achievement_bg_36
|
||||||
|
material,achievement_bg_37
|
||||||
|
material,achievement_bg_38
|
||||||
|
material,achievement_bg_39
|
||||||
|
material,achievement_bg_40
|
||||||
|
material,achievement_bg_41
|
||||||
|
material,achievement_bg_42
|
||||||
|
material,achievement_bg_43
|
||||||
|
material,achievement_bg_44
|
||||||
|
material,achievement_bg_45
|
||||||
|
material,achievement_bg_46
|
||||||
|
material,achievement_bg_47
|
||||||
|
material,achievement_bg_48
|
||||||
|
material,achievement_bg_49
|
||||||
|
material,achievement_bg_50
|
||||||
|
|
||||||
localize,english
|
localize,english
|
||||||
sound,ui_achievement_unlocked
|
sound,ui_achievement_unlocked
|
||||||
|
|
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_1.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_1.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_10.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_10.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_11.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_11.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_12.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_12.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_13.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_13.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_14.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_14.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_15.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_15.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_16.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_16.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_17.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_17.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_18.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_18.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_19.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_19.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_2.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_2.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_20.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_20.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_21.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_21.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_22.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_22.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_23.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_23.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_24.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_24.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_25.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_25.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_26.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_26.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_27.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_27.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_28.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_28.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_29.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_29.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_3.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_3.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_30.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_30.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_31.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_31.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_32.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_32.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_33.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_33.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_34.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_34.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_35.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_35.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_36.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_36.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_37.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_37.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_38.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_38.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_39.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_39.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_4.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_4.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_40.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_40.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_41.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_41.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_42.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_42.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_43.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_43.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_44.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_44.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_45.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_45.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_46.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_46.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_47.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_47.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_48.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_48.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_49.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_49.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_5.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_5.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_50.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_50.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_6.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_6.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_7.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_7.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_8.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_8.dds
Normal file
Binary file not shown.
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_9.dds
Normal file
BIN
data/zonetool/h2_mod_ui/images/achievement_bg_9.dds
Normal file
Binary file not shown.
26
data/zonetool/h2_mod_ui/materials/achievement_bg_1.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_1.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_1",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_1",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_10.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_10.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_10",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_10",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_11.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_11.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_11",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_11",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_12.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_12.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_12",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_12",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_13.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_13.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_13",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_13",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_14.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_14.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_14",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_14",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_15.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_15.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_15",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_15",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_16.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_16.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_16",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_16",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_17.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_17.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_17",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_17",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_18.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_18.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_18",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_18",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_19.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_19.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_19",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_19",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_2.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_2.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_2",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_2",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_20.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_20.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_20",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_20",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_21.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_21.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_21",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_21",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_22.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_22.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_22",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_22",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_23.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_23.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_23",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_23",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_24.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_24.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_24",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_24",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_25.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_25.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_25",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_25",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_26.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_26.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_26",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_26",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_27.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_27.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_27",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_27",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_28.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_28.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_28",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_28",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_29.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_29.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_29",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_29",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_3.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_3.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_3",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_3",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_30.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_30.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_30",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_30",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_31.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_31.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_31",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_31",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_32.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_32.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_32",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_32",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_33.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_33.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_33",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_33",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_34.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_34.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_34",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_34",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_35.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_35.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_35",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_35",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_36.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_36.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_36",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_36",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_37.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_37.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_37",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_37",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_38.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_38.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_38",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_38",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_39.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_39.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_39",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_39",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_4.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_4.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_4",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_4",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_40.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_40.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_40",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_40",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_41.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_41.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_41",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_41",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_42.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_42.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_42",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_42",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_43.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_43.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_43",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_43",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_44.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_44.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_44",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_44",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_45.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_45.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_45",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_45",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_46.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_46.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_46",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_46",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_47.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_47.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_47",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_47",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_48.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_48.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_48",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_48",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_49.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_49.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_49",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_49",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_5.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_5.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_5",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_5",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_50.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_50.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_50",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_50",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_6.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_6.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_6",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_6",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
26
data/zonetool/h2_mod_ui/materials/achievement_bg_7.json
Normal file
26
data/zonetool/h2_mod_ui/materials/achievement_bg_7.json
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
"name": "achievement_bg_7",
|
||||||
|
"techniqueSet->name": "2d",
|
||||||
|
"gameFlags": 0,
|
||||||
|
"sortKey": 60,
|
||||||
|
"renderFlags": 0,
|
||||||
|
"textureAtlasRowCount": 1,
|
||||||
|
"textureAtlasColumnCount": 1,
|
||||||
|
"textureAtlasFrameBlend": 0,
|
||||||
|
"textureAtlasAsArray": 0,
|
||||||
|
"surfaceTypeBits": 0,
|
||||||
|
"cameraRegion": 12,
|
||||||
|
"materialType": 0,
|
||||||
|
"assetFlags": 0,
|
||||||
|
"constantTable": null,
|
||||||
|
"textureTable": [
|
||||||
|
{
|
||||||
|
"image": "achievement_bg_7",
|
||||||
|
"semantic": 0,
|
||||||
|
"samplerState": 226,
|
||||||
|
"lastCharacter": 112,
|
||||||
|
"firstCharacter": 99,
|
||||||
|
"typeHash": 2695565377
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user