Skip to content

Latest commit

 

History

History
31 lines (20 loc) · 962 Bytes

README.md

File metadata and controls

31 lines (20 loc) · 962 Bytes

Defold Clipboard

Defold native extension to access the clipboard.

System requirements

The extension currently supports OSX, Windows, Linux (contributed by AsakuraMizu), iOS and Android.

Limitations

The extension will not support HTML5 as clipboard access is restricted in browsers due to security reasons.

Installation

You can use the Clipboard extension in your own project by adding this project as a Defold library dependency. Open your game.project file and in the dependencies field under project add:

https://github.com/britzl/defold-clipboard/archive/master.zip

Or point to the ZIP file of a specific release.

Usage

clipboard.copy(text)

Copy text to the clipboard.

PARAMETERS

  • text (string)

clipboard.paste()

Get text from the clipboard.

RETURNS

  • text (string)