createChatBubble

API -

return function()
    local app = getApp();
    
    local position = app.convertPercentToPosition(0.5, 0.5);
    --creates a chat bubble in the center of the screen for 30 seconds with
    --'test' as the text.
    app.createChatBubble(position.x, position.y, 30, 'test')
end

Last updated