Christer
Christer
Could anybody experienced with this project address the questions in the concerns above? I'm especially wondering how conflict resolution is handled.
Struggling with the same issue, did you find any solution to this?
Very cool seeing what you've been experimenting with, and scaling the ambient light pretty smart. I've noticed strange behavior with this myself, which is why I added the "[Everything looks...
Should be quite straightforward to make this, add an extra texture input which is multiplied with the output of the "Gloss" in the sub graph. Here is an example: , so can confirm that it should work in this version. But you might be experiencing...
Another solution to this is to cast is before assigning it to . ```ts import type { FormProps } from 'svelte-forms-lib'; import { Form, Field } from 'svelte-forms-lib'; // Specify...
This would be great! But today what is the current best approach to handling a server-side rejection like this?
I'm assuming it's something like this: ```js const { errors } = createForm({ initialValues: { name: 'test' }, onSubmit: () => {} }); errors.set({ name: 'My custom error' }); ```...
Thanks for the pointers. But could not get it to work with the errors slot, when trying to call it from the `onSubmit()` event of the parent (Function called outside...
This was a genius, should be an official utility or npm library for this! 💪 **I assume that doesn't exist yet?** To summarise for anybody wanting a quick version converted...