-
Notifications
You must be signed in to change notification settings - Fork 15
Edge Methods
GodDragoner edited this page Apr 9, 2018
·
1 revision
Lets the system know that the sub is going to edge and automatically adds a response that will trigger if the sub is on the edge and will set edging to false and on the edge to true.
Alias: startEdging
Example:
startStroking(250);
sendMessage("Edge!");
startEdge();
Lets the system know that the sub is stopping to edge.
Alias: stopEdge, endEdging, stopEdging
Example:
sendMessage("Let go!");
endEdge();
Returns whether the sub is edging right now. NOT on the edge though!
Example:
if(isEdging()) {
addStrokingBPM(30);
sendMessage("Speed up");
}
Returns whether the sub is on the edge right now.
Alias: onEdge, isEdge
Example:
if(isOnEdge()) {
stopStroking();
endEdge();
sendMessage("Hands off!");
}