13 lines
232 B
TypeScript
13 lines
232 B
TypeScript
/** Names of the possible directions. */
|
|
export const directionNames = {
|
|
x: ['Right', 'Left'],
|
|
y: ['Down', 'Up']
|
|
};
|
|
|
|
/** States for the gesture. */
|
|
export const state = {
|
|
inactive: 0,
|
|
watching: 1,
|
|
dragging: 2
|
|
};
|