Skip to content
This repository has been archived by the owner on Sep 29, 2021. It is now read-only.

Commit

Permalink
write docs, add logo
Browse files Browse the repository at this point in the history
  • Loading branch information
Correct-Syntax committed Jul 17, 2020
1 parent dd1571d commit 0392d99
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 6 deletions.
8 changes: 4 additions & 4 deletions docs/source/api.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ First Steps: Input Node Tutorial

This is a tutorial to create a simple, custom Input Node usng the Gimel Studio API. It gives first steps in creating custom nodes and shows some of the core API concepts. The example node we will be creating is a simplified version of the Image Core Node in Gimel Studio and is an easy way to get going creating a custom node (it can be used as a template).

.. figure:: _static/simple_input_node_finished_result.png
.. figure:: _images/simple_input_node_finished_result.png
:align: center

The finished custom input node that we'll be scripting.
Expand Down Expand Up @@ -309,7 +309,7 @@ Finally, write a ``NodeAuthor`` method which shows the user (in the node registr
We have now defined the custom node's meta information. However, that isn't good enough because if you registered it as-is, it wouldn't actually *do* anything.

.. figure:: _static/simple_input_node.png
.. figure:: _images/simple_input_node.png
:align: center

Our node so far -if you went ahead and registered it.
Expand Down Expand Up @@ -402,7 +402,7 @@ Here is the code:
self.pathtxtctrl.ChangeValue(paths[0])
.. figure:: _static/simple_input_node_properties_ui.png
.. figure:: _images/simple_input_node_properties_ui.png
:align: center

Our completed Node Property panel UI
Expand Down Expand Up @@ -461,7 +461,7 @@ Finished Result

You can now launch the Gimel Studio Application and you should see the custom node in the *Add Node* menu and/or the Node Registry. Add the node and connect it to the Output node. Click on the simple custom input node and click the browse button in the Node Property panel. It should prompt with a dialog allowing you to choose an image to input.

.. figure:: _static/simple_input_node_finished_result.png
.. figure:: _images/simple_input_node_finished_result.png
:align: center

The finished custom input node.
Expand Down
11 changes: 9 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
import os
import sys
sys.path.insert(0, os.path.abspath('../../src/'))
#print(os.path.abspath('../../src/GimelStudio/'), " doc")

import GimelStudio


# -- Project information -----------------------------------------------------
Expand All @@ -23,7 +24,8 @@
author = 'Noah Rahm'

# The full version, including alpha/beta/rc tags
release = '0.3.0.0'
release = GimelStudio.__VERSION__
version = GimelStudio.__VERSION__


# -- General configuration ---------------------------------------------------
Expand Down Expand Up @@ -57,3 +59,8 @@
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']

# Logo
html_favicon = "../../assets/GIMELSTUDIO_ICO.ico"
html_logo = "../../assets/GIMELSTUDIO_ICO.ico"

0 comments on commit 0392d99

Please sign in to comment.