Skip to content

Instantly share code, notes, and snippets.

@matheus2740
matheus2740 / README.md
Created June 13, 2020 20:13
Using Cython (C and C++) with godot and godot-python

For these notes, I'm assuming the reader is reasonably familiar with how cython, python and godot works.

Basic steps to use cython in your godot project:

  • Download and install godot-python and make sure python scripts are working in your project:
  • Install Cython in your python environment:
    • cd myproject
    • ./addons/pythonscript/x11-64/bin/python3 -m pip install cython==3.0a5
@matheus2740
matheus2740 / designer.html
Last active August 29, 2015 14:18
designer
<link rel="import" href="../core-ajax/core-ajax.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;