Giter Site home page Giter Site logo

netsblox-extension-rs's Introduction

Rust-based NetsBlox extension generator

This repository contains an example of a WASM-based NetsBlox extension and code for the two crates used to make this possible.

The index.js file for the extension is generated by a build script. For example, to add a custom block, in the source lib.rs you could use:

#[wasm_bindgen]
#[netsblox_extension_block(name = "logHelloWorld", category = "Hello World", spec = "Log Hello World!", target = netsblox_extension_util::TargetObject::Both)]
pub fn hello_world() {
    console::log_1(&"Hello World!".to_owned().into());
}

And in the extension file, the following will be generated:

new Extension.Block(
    'logHelloWorld',
    'command',
    'Hello World',
    'Log Hello World!',
    [],
    function () { return ExampleExtension_fns.hello_world(); }
).for(SpriteMorph, StageMorph),

The other sections of the file will be generated to match, allowing the block to be used when the extension is loaded. The ExampleExtension_fns object contains the functions used by the extension (in this case, named 'ExampleExtension')

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.