hsluoyz / Kalon

A humanlike cursor movement library that uses randomised bezier curves for path generation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Kalon

A humanlike cursor movement library that uses randomised bezier curves for path generation


Example

The image below demonstrates some generated movements between a set of points


Caveats

  • The provided delay applies exclusively to the movement of the cursor rather than the total runtime of the method

Getting started

The example below demonstrates a basic implementation of the library

var point = new Point(0, 0);

var delay = TimeSpan.FromMilliseconds(0);

CursorMover.MoveCursor(point, delay);

CursorMover Class

Provides the functionality to move the cursor in a human realistic manner

public static class CursorMover

Methods

Moves the cursor to a point

MoveCursor(Point, TimeSpan)

About

A humanlike cursor movement library that uses randomised bezier curves for path generation

License:MIT License


Languages

Language:C# 100.0%