Default skin 17_DanC folder
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Background.png
Normal file
After Width: | Height: | Size: 355 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Base.png
Normal file
After Width: | Height: | Size: 117 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Base_Small.png
Normal file
After Width: | Height: | Size: 70 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/ExamCymbol.png
Normal file
After Width: | Height: | Size: 9.6 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/ExamRange.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/ExamType.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Failed.png
Normal file
After Width: | Height: | Size: 7.8 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Gauge_Base.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Gauge_Clear.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Gauge_Normal.png
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Gauge_Reach.png
Normal file
After Width: | Height: | Size: 22 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/MiniNumber.png
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Number.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Rainbow/0.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/SmallBase.png
Normal file
After Width: | Height: | Size: 8.2 KiB |
After Width: | Height: | Size: 13 KiB |
BIN
DefaultSkinTmpFolder/Graphics/5_Game/17_DanC/Small_Number.png
Normal file
After Width: | Height: | Size: 10 KiB |
@ -56,8 +56,8 @@ namespace TJAPlayer3
|
||||
* l : "Less than"
|
||||
* le : "Less or equal"
|
||||
* e : "Equal"
|
||||
* me : "More or equal"
|
||||
* m : "More than" (Default)
|
||||
* me : "More or equal" (Default)
|
||||
* m : "More than"
|
||||
* d : "Different"
|
||||
*/
|
||||
public bool tValueRequirementMet(int val1, int val2)
|
||||
@ -77,7 +77,7 @@ namespace TJAPlayer3
|
||||
case "d":
|
||||
return (val1 != val2);
|
||||
default:
|
||||
return (val1 > val2);
|
||||
return (val1 >= val2);
|
||||
}
|
||||
}
|
||||
|
||||
|