• Hey Guest! Ever feel like entering a Game Jam, but the time limit is always too much pressure? We get it... You lead a hectic life and dedicating 3 whole days to make a game just doesn't work for you! So, why not enter the GMC SLOW JAM? Take your time! Kick back and make your game over 4 months! Interested? Then just click here!

Asset - Extension Handwriting Recognition

zbox

Member
GMC Elder
Handwriting Recognition

Marketplace: https://marketplace.yoyogames.com/assets/4578/handwriting-recognition
Category:
Extensions (All Platforms except for HTML5)
Price: $15.99
Modules: All (Except HTML5)

Description:
Translate user's hand-drawn glyphs into useable characters! Currently only supports 0-9 digits and single digit only. Drawing system is fully customizable, chalkboard demo to get you started.
Useage: Call
Code:
reference = recognition_create(x,y,size[,timeToDraw]);
Making sure you store the result to get the input at a later time. To check if the user has drawn a glyph:
Code:
if (recognition_has_input(reference)) {
    var number = recognition_get(reference); // contains the user's number now
    show_debug_message(number);
}
There is an included demo object in the asset package to demonstrate.

NOTE: When using this extension you must import all objects, included files, backgrounds and fonts and shaders to work right off the bat.

Works on all platforms except for HTML5

DEMO
https://drive.google.com/open?id=0B7C84bRlE1LLRWl2RTJPak1Hdlk

Video
 
Last edited:
Top