1. #391
    dasraizer's Avatar Senior Member
    Join Date
    Apr 2014
    Location
    UK, Isle of Wight
    Posts
    1,195

    Re: Visual Flowchart Editor Tutorials {35} and counting...

    Originally Posted by Luthanick
    I think I finally have all the tutorials linked in the index now!! It's MUCH easier to browse for a topic you want. Also got tothfps' videos linked in, but wasn't sure how to categorize them. Jarr3tt88 also has some tutorial vids right? Maybe those could be added to. If you add a new tutorial link it into the list too please. It's super easy. The only hard part is to make the link show up right you type =hyperlink("URL","Text")
    That's it. Put the URL in the first quotes and the text you want people to see in the second quotes.
    So there are actually 56 tutorials now Web needs to get back so he can update this sucker. I'll hopefully be able to add a few more here soon. Life has been rather busy for me recently.

    Here's the link to the index: Tutorial Index
    outstanding, nice one Luthanick , i would have like to help before but had visions of me messing it up, like the template , you made it sound simple enough, so will add to index when i create any new tutorials.

    not sure when though, a bit over the DLC and the possibilities.
    Share this post

  2. #392
    nannerdw's Avatar Senior Member
    Join Date
    Jan 2013
    Posts
    1,268

    Re: Visual Flowchart Editor Tutorials {35} and counting...

    I made some modifications to my Relative Speed Between Objects tutorial.
    It turned out that the method I was using before only worked under very specific conditions. This one should behave more predictably.
    Share this post

  3. #393
    dasraizer's Avatar Senior Member
    Join Date
    Apr 2014
    Location
    UK, Isle of Wight
    Posts
    1,195

    Re: Visual Flowchart Editor Tutorials {35} and counting...

    Originally Posted by nannerdw
    I made some modifications to my Relative Speed Between Objects tutorial.
    It turned out that the method I was using before only worked under very specific conditions. This one should behave more predictably.
    why not do the maths before you store the distance value? that way your constantly updating against the old value, and it's a lot less code.
    Share this post

  4. #394
    nannerdw's Avatar Senior Member
    Join Date
    Jan 2013
    Posts
    1,268

    Re: Visual Flowchart Editor Tutorials {35} and counting...

    Originally Posted by dasraiser
    why not do the maths before you store the distance value? that way your constantly updating against the old value, and it's a lot less code.
    That's how I did it before, but it was really buggy and didn't always work properly. Subtracting two stored variables from each other works much more consistently than trying to subtract the stored variable from the current value of the distance operator.

    Also, the set value event and VDS leading to the output shouldn't be necessary. Technically, the "Two Input Operator: Multiply" is storing the correct output value, but it displays 0.00 in the editor. The actual value only displays once it's sent to a VDS, and it only works when I branch off with a splitter. The set value event doesn't always have enough time to execute when it's placed inline. I guess using a splitter actually moves that section of the game's code to a separate CPU thread, allowing it just enough additional time to execute.
    Share this post

  5. #395
    dasraizer's Avatar Senior Member
    Join Date
    Apr 2014
    Location
    UK, Isle of Wight
    Posts
    1,195

    Re: Visual Flowchart Editor Tutorials {35} and counting...

    Originally Posted by nannerdw
    The set value event doesn't always have enough time to execute when it's placed inline. I guess using a splitter actually moves that section of the game's code to a separate CPU thread, allowing it just enough additional time to execute.
    oh, i've never really had a problem like this, it could be that if your using OPE to obtain the difference, it could have executed the translate after the maths making it invalid.

    i do like the double buffer method you've used and will use if i come across this problem myself.
    Share this post

  6. #396
    nannerdw's Avatar Senior Member
    Join Date
    Jan 2013
    Posts
    1,268

    Re: Visual Flowchart Editor Tutorials {35} and counting...

    I've added a sheet to the Musical Note Conversion Table to include the new "Bass Synth", "Classic, Piano", and "Chord, Chip" sounds.

    I couldn't get any useful FFT data from the shorter sounds, like Piano D4 and Bass Synth, so I had to do those by ear. Listening to the piano notes, it sounds to me like increasing the pitch value by 1 raises the pitch by exactly a semitone t's more intuitive this way, if this was actually how the pitch slider was programmed.) This sounded the most accurate to me when compared to an actual keyboard. The values I had interpolated earlier for "Oscillator, Sine" and "Oscillator, Square" ended up with about 1% less pitch change between each note, so I might have to go back and tweak those values a little bit and see if they sound any better. The difference was indistinguishable to me for the oscillator sounds, but maybe someone with a better ear could figure out what sounds the best.
    Share this post

  7. #397
    dasraizer's Avatar Senior Member
    Join Date
    Apr 2014
    Location
    UK, Isle of Wight
    Posts
    1,195

    Re: Visual Flowchart Editor Tutorials {35} and counting...

    Originally Posted by nannerdw
    I've added a sheet to the Musical Note Conversion Table to include the new "Bass Synth", "Classic, Piano", and "Chord, Chip" sounds.

    I couldn't get any useful FFT data from the shorter sounds, like Piano D4 and Bass Synth, so I had to do those by ear. Listening to the piano notes, it sounds to me like increasing the pitch value by 1 raises the pitch by exactly a semitone t's more intuitive this way, if this was actually how the pitch slider was programmed.) This sounded the most accurate to me when compared to an actual keyboard. The values I had interpolated earlier for "Oscillator, Sine" and "Oscillator, Square" ended up with about 1% less pitch change between each note, so I might have to go back and tweak those values a little bit and see if they sound any better. The difference was indistinguishable to me for the oscillator sounds, but maybe someone with a better ear could figure out what sounds the best.
    i have to say, i found the square/sine waves bang on pitch to my keyboard, and yes it is a semitone per unit. The problem with FFT is how many samples it uses to develop the spectrum and can only ever be an approximation due to this.
    Share this post

  8. #398

    Re: Visual Flowchart Editor Tutorials {35} and counting...

    Someone needs to add a tutorial about how it is now possible to change colors smoothly using vectors.

    Attach the color to a vector curved data source. Choose two vectors as the start and end. The x-value of the vector is the "amount" of red, which ranges from 0-200 think). Y-value determines the amount of green, z-value determines the amount of blue.
    Share this post

  9. #399

    Re: Visual Flowchart Editor Tutorials {35} and counting...

    Originally Posted by buttcheekofdeth
    Someone needs to add a tutorial about how it is now possible to change colors smoothly using vectors.
    Well volunteered!
    Share this post

  10. #400

    Re: Visual Flowchart Editor Tutorials {35} and counting...

    Originally Posted by JaminBen007
    Originally Posted by buttcheekofdeth
    Someone needs to add a tutorial about how it is now possible to change colors smoothly using vectors.
    Well volunteered!
    But I'm lazy

    I already said how to do it, now someone just has to put it in flowchart form!
    Share this post