Masato Makino
Masato Makino
Great idea! I couldn't come up with that function. If you plan to add testing as well, I have nothing to comment on.
> What if we apply Object.freeze? With this in view, I did some research on how to implement it. - Object.freeze makes properties, including functions, unchangeable. - Object.freeze does not...
> @MasatoMakino Thanks for this! Would you mind making an example for this? @trusktr Thanks for your reply. I have made examples of multiple start with CodePen. [tween.js 18.6.4 :...
I did some research on jitter in `Exponential` function. ## Cause of jump `Easing.Exponential` function, unlike other easing functions, does not interpolate from 0 to 1. https://github.com/tweenjs/tween.js/blob/ae24c58c8b57b2079151ae2c3c63f2bb501c8b2b/src/Easing.ts#L84 The core of...
@trusktr Thanks for your advice. > I really like popmotion's ability to create arbitrary curves. Maybe we can adopt that approach. I also think that this approach is the best...
I think it related to NFD filename on macOSX. NFD's "ダ" is "タ" + " " ". NFD's "ダ" chrcode deffer from NFC's "ダ" chrcode.
I faced the same problem. I'll share screenshots and environment informations. ### macOS 10.15 ---  Google Chrome 83.0.4103.116(Official Build) macOS 10.15.2 Mac mini (2018) LCD-MF245XD(1920*1080) ---  Safari 13.0.4...
Perhaps I have found a solution. ## Solution Replace the `random` function. ``` float random (in vec2 _st) { return fract(sin(dot(_st.xy, vec2(0.129898,0.78233)))* 437.585453123); } ``` ## Procedure To narrow down...
I found a different solution. ## Solution Replace the random function with the hash function, which can be found [here](https://gist.github.com/patriciogonzalezvivo/670c22f3966e662d2f83). ```glsl // // By Morgan McGuire @morgan3d, http://graphicscodex.com // float...
This Issue was resolved by PR #172. Additionally, as there has been no activity for an extended period, this Issue will be closed. If any related issues are discovered, please...