kopia lustrzana https://github.com/jameshball/osci-render
rodzic
3666eff842
commit
e19fa93527
2
pom.xml
2
pom.xml
|
@ -6,7 +6,7 @@
|
|||
|
||||
<groupId>sh.ball</groupId>
|
||||
<artifactId>osci-render</artifactId>
|
||||
<version>1.27.3</version>
|
||||
<version>1.27.4</version>
|
||||
|
||||
<name>osci-render</name>
|
||||
|
||||
|
|
|
@ -1,3 +1,15 @@
|
|||
- 1.27.4
|
||||
- Allow the 3D perspective effect to be live-programmed with Lua
|
||||
- By default, the behaviour is the same as before and the image is not modified
|
||||
- Variables `x`, `y`, and `z` are available to used to transform the 3D position of the image
|
||||
- `step` is also available as with regular live-coding
|
||||
- This lets you animate the effects you apply
|
||||
- Most interesting transformations include modifying the depth to be a function of `x` and `y`
|
||||
- Example: `return { x, y, z + 0.1 * math.sin(x * 10 + step / 100000) }`
|
||||
- This creates a wave effect for the image which can be visualised more clearly by rotating the image
|
||||
- Functions written are saved with the project
|
||||
|
||||
|
||||
- 1.27.3
|
||||
- Fix [#102](https://github.com/jameshball/osci-render/issues/102) which caused errors when using trace min and small focal lengths at the same time
|
||||
- Thanks [Luiginotcool](https://github.com/Luiginotcool) for reporting this issue!
|
||||
|
|
|
@ -27,7 +27,7 @@
|
|||
<Button fx:id="newProjectButton" layoutX="222.0" layoutY="562.0" mnemonicParsing="false" prefHeight="40.0" prefWidth="131.0" text="Start new project" />
|
||||
<CheckBox fx:id="startMutedCheckBox" layoutX="240.0" layoutY="623.0" mnemonicParsing="false" text="Start muted" />
|
||||
<Label layoutX="188.0" layoutY="247.0" styleClass="title" text="Recently opened projects" />
|
||||
<Label layoutX="14.0" layoutY="700.0" text="v1.27.3" />
|
||||
<Label layoutX="14.0" layoutY="700.0" text="v1.27.4" />
|
||||
<Label layoutX="727.0" layoutY="20.0" styleClass="title" text="Changelog" />
|
||||
<AnchorPane layoutX="582.0" layoutY="65.0" prefHeight="200.0" prefWidth="380.0">
|
||||
<children>
|
||||
|
|
Ładowanie…
Reference in New Issue