-
Notifications
You must be signed in to change notification settings - Fork 159
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
92 changed files
with
942 additions
and
1,469 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Antimony 0.7.7 | ||
-------------- | ||
|
||
**Features:** | ||
- Allow `fab.types.Shape` input text box to be edited. | ||
- This required a file format change. | ||
- Older files will be automatically upgraded. | ||
- Warn when unsaved changes will be lost. | ||
- Drag functions can now be specified for `fab.ui.wireframe` objects. | ||
- `Set Color` node allows shapes to be rendered in custom colors. | ||
- Add button that shows hidden datums (i.e. datums prefixed with `_`). | ||
- Tooltips for buttons in inspector. | ||
- Remove `Alt` as the *Hide UI* shortcut and added View menu option. | ||
|
||
**Bugfixes:** | ||
- Close script editor when datum is deleted. | ||
- Fixed subtle bug in `Control` construction. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import fab | ||
|
||
title('Hide') | ||
|
||
input('shape',fab.types.Shape) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import fab | ||
|
||
title('Set color (RGB)') | ||
|
||
input("shape", fab.types.Shape) | ||
input("r", int, 255) | ||
input("g", int, 255) | ||
input("b", int, 255) | ||
|
||
output("out", fab.shapes.set_color(shape, r, g, b)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,5 @@ | ||
SOURCES += \ | ||
../src/graph/node/node.cpp \ | ||
../src/graph/node/nodes/2d.cpp \ | ||
../src/graph/node/nodes/3d.cpp \ | ||
../src/graph/node/nodes/deform.cpp \ | ||
../src/graph/node/nodes/meta.cpp \ | ||
../src/graph/node/nodes/transforms.cpp \ | ||
../src/graph/node/nodes/iterate.cpp \ | ||
|
||
HEADERS += \ | ||
../src/graph/node/node.h \ | ||
../src/graph/node/nodes/2d.h \ | ||
../src/graph/node/nodes/3d.h \ | ||
../src/graph/node/nodes/deform.h \ | ||
../src/graph/node/nodes/meta.h \ | ||
../src/graph/node/nodes/transforms.h \ | ||
../src/graph/node/nodes/iterate.h \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.