Update CJK files
This commit is contained in:
@@ -20,6 +20,7 @@ Page buttonpage04
|
||||
vis 255,0
|
||||
vis button_back,1
|
||||
vis page_index,1
|
||||
vis page_label,1
|
||||
}
|
||||
|
||||
Postinitialize Event
|
||||
@@ -776,9 +777,22 @@ TouchCap swipe
|
||||
// From Left to Right
|
||||
if(swipec>swipedx)
|
||||
{
|
||||
page buttonpage03
|
||||
// Navigate back based on active status
|
||||
if(is_buttonpage03==1)
|
||||
{
|
||||
page buttonpage03
|
||||
}else if(is_buttonpage02==1)
|
||||
{
|
||||
page buttonpage02
|
||||
}else if(is_buttonpage01==1)
|
||||
{
|
||||
page buttonpage01
|
||||
}else
|
||||
{
|
||||
page home
|
||||
}
|
||||
}
|
||||
// Right to Left
|
||||
// Right to Left swipe now navigates to home, looping back to the start.
|
||||
swipec2=0-swipedx
|
||||
if(swipec<swipec2)
|
||||
{
|
||||
@@ -792,13 +806,41 @@ TouchCap swipe
|
||||
// From Up to Down
|
||||
if(swipec>100)
|
||||
{
|
||||
//page
|
||||
if(is_buttonpage03==1&&is_buttonpage02==1)
|
||||
{
|
||||
page buttonpage02
|
||||
}else if(is_buttonpage03==1||is_buttonpage02==1)
|
||||
{
|
||||
if(is_buttonpage01==1)
|
||||
{
|
||||
page buttonpage01
|
||||
}else
|
||||
{
|
||||
page home
|
||||
}
|
||||
}else
|
||||
{
|
||||
page home
|
||||
}
|
||||
}
|
||||
// Down to Up
|
||||
swipec2=0-swipedy
|
||||
swipec=0-swipedy
|
||||
if(swipec<-100)
|
||||
{
|
||||
//page
|
||||
// Navigate back up the sequence based on active status
|
||||
if(is_buttonpage01==1)
|
||||
{
|
||||
page buttonpage01
|
||||
}else if(is_buttonpage02==1)
|
||||
{
|
||||
page buttonpage02
|
||||
}else if(is_buttonpage03==1)
|
||||
{
|
||||
page buttonpage03
|
||||
}else
|
||||
{
|
||||
page home
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user