void OnNFCTagRead(string[] inRecords)
Description
This callback function is called when NFC scanner is used and you would like to add an additional information.
Parameters
The following is a list of parameters the functions receives
Parameter | Type | Description |
---|---|---|
inRecords | string | Value to add when NFC tag is read |
Return Type
void
Example
function OnNFCTagRead(inRecords){
inRecords = "this is a test";
}
Comments
Please sign in to leave a comment.