Supernova-Studio / exporter-godot

Supernova Godot exporter allows conversion of design system data and elements into valid, production-ready style variables and code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Supernova Logo

Supernova is a design system platform that manages your assets, tokens, components and allows you to write spectacular documentations for your entire teams. And because you found your way here, you are probably interested in its most advanced functionality - automatic hand-off of design and development assets, tokens and data in general. To learn everything Supernova, please check out our developer documentation.

Godot Exporter

The Godot Exporter allows you to produce production-ready code for your product tokens (such as colors) defined inside your design system in such a way that you can immediately use them to style your game elements. Specifically, this exporter automates the coding of:

  • Color definitions
  • Gradients
  • Radii
  • Measures
  • Strings

The exporter will generate a class per style type with a static variable for each specific token. If provided, it will also include each token's description as a documentation comment. Tokens such as colors or texts are exported as simple variables:

extends Node


# Use this string to greet the player
var main_menu_greeting_token = "Game on, player!"

var main_menu_new_game = "New Game"

var main_menu_option_sound = "Sound: "

var main_menu_option_music = "Music: "

var main_menu_option_quit_game = "Quit Game"

Here's an example of the exporter ouput for a single Red - Black Gradient gradient token:

extends Node


# This is the red to black gradient.
var red_black_gradient := Gradient.new()
var red_black_gradient_data := {
	0: Color8(255, 0, 0, 255),
	1: Color8(0, 0, 0, 255),
}


func _ready():
	red_black_gradient.offsets = red_black_gradient_data.keys()
	red_black_gradient.colors = red_black_gradient_data.values()

Example Usage

Once you have run the exporter against your design system, you can start using the code in your codebase right away. Here are a few examples of how you can use the output of the Flutter exporter:

Using the gradient

Setting up the gradient from the example above as a GradientTexture:

var gradient_texture := GradientTexture.new()
gradient_texture.gradient = red_black_gradient

Installing

You can generate all production ready-code either manually using Supernova's VS Code extension, or automate your code delivery pipeline using Supernova Design Continuous Delivery. In order to make the Supernova Flutter exporter available for your organization so you can start generating code from your design system, please follow the installation guide in our developer documentation.

Reporting Bugs or Requesting Features

In order to faciliate easy communication and speed up delivery of fixes and features for this exporter, we require everyone to log all issues and feature requests through the issue tracking of this repository.

Please read through the existing issues before you open a new issue! It might be that we have already discussed it before. If you are sure your request wasn't mentioned just yet, proceed to open a new issue and fill in the required information. Thank you!

Contributing

If you have an idea for improving this exporter package or want a specific issue fixed quickly, we would love to see you contribute to its development!

There are multiple ways you can contribute, so we have written a contribution guide that will walk your through the process. Any pull requests to this repository are very welcome.

Would love to help us build more but maybe need a little bit of support? Join our community and drop us a message, we will support any of your wild ideas!

License

This exporter is distributed under the MIT license. We absolutely encourage you to clone it and modify it for your purposes, so it fits the requirements of your stack. If you see that you have created something amazing in the process that others would benefit from, we strongly recommend you consider publishing it back to the community as well.

Useful Links

  • To learn more about Supernova, go visit our website
  • To join our community of fellow developers where we try to push what is possible with design systems and code automation, join our community discord
  • To understand everything you can do with Supernova and how much time and resources it can save you, go read our product documentation
  • Finally, to learn everything about what exporters are and how you can integrate with your codebase, go read our developer documentation

Supernova Maintained Exporters

We are developing and maintaining exporters for many major technologies. Here are all the official exporters maintained by Supernova:

Additionally, you can also use asset exporters for all major targets, enjoy!:

To browse all exporters created by our amazing community, please visit the Supernova Exporter Store.

About

Supernova Godot exporter allows conversion of design system data and elements into valid, production-ready style variables and code

License:MIT License


Languages

Language:JavaScript 100.0%