Simple Yet Unique Waveshape

Discussion forum for G-Force users

Moderators: BTT, andy55, b.dwall, juxtiphi

Post Reply
User avatar
ShohS
Posts: 76
Joined: Fri Apr 06, 2018 11:46 am
Location: no one must know shhhh

Simple Yet Unique Waveshape

Post by ShohS »

So after making the sparkles waveshape/particle, I have made another one of the same style. This one's a solid star

Code: Select all

//Solid Star by ShohS
NUM = "5" 
stps="60" 
Aspc=1 

A0="sin(rnd(pi))*rnd(6)" 
A1="2 * pi" 
A2="choice({0, 1, 2, 3, 4, 5})*.01" 
A3="sin(rnd(pi))*rnd(6)" 

B0="" 
B1="1.1 * cos( t * A0 + A1 + 2 * pi * ID / NUM )" 
B2="1.1 * sin( t * A0 + A1 + 2 * pi * ID / NUM )" 
B3="" 
B4="" 

C0="(s*(.08+A2))*bass*3" 
C1="" 
C2="c0 * cos( c1 )" 
C3="c0 * sin( c1 )" 

X0="B1 * c2 - B2 * C3" 
Y0="B1 * c3 + B2 * C2" 

LWdt="((1-s)*20)*bass*3" 
ConB=0 

Meta="reactive=4 detail=4 density=5 morphable=4" 

Vers=270 
Nut

User avatar
BTT
Administrator
Posts: 2256
Joined: Sun Jun 20, 2010 9:34 pm
Location: United Kingdom

Re: Simple Yet Unique Waveshape

Post by BTT »

Hello ShohS

Are you up for a bit of fun? If so try adding this line to your config.

Pen="mag(s)+.9"

Don't ask me how it works, it just does.
.
Regards BTT

ColorMap Creator for G-Force and Aeon --- SoundSpectrum Forum Administrator.

User avatar
ShohS
Posts: 76
Joined: Fri Apr 06, 2018 11:46 am
Location: no one must know shhhh

Re: Simple Yet Unique Waveshape

Post by ShohS »

BTT wrote:
Sun Dec 01, 2024 11:52 am
Hello ShohS

Are you up for a bit of fun? If so try adding this line to your config.

Pen="mag(s)+.9"

Don't ask me how it works, it just does.
I love the effect but the color clipping icks me
good thing I found a fix for it:

By swapping the S and (ID/NUM) values, G-force renders them in a different order. That way it becomes more symmetrical.

Here's the fixed version:

Code: Select all

//Solid star by ShohS with pen mod by BTT
NUM = "60" 
stps="6" 
Aspc=1 

A0="sin(rnd(pi))*rnd(6)" 
A1="2 * pi" 
A2="choice({0, 1, 2, 3, 4, 5})*.01" 
A3="sin(rnd(pi))*rnd(6)" 

B0="" 
B1="1.1 * cos( t * A0 + A1)" 
B2="1.1 * sin( t * A0 + A1)" 

C0="((id/num)*(.08+A2))*bass*1.5" 
C1="2*pi*s" 
C2="c0 * cos( c1 )" 
C3="c0 * sin( c1 )" 

X0="(B1 * c2 - B2 * C3)" 
Y0="(B1 * c3 + B2 * C2)" 


LWdt="((1-(Id/num))*20)*bass*1.5" 
ConB=0 
Pen="mag(Id/num)+.9"
Meta="reactive=4 detail=4 density=5 morphable=4" 

Vers=270 
Here's another one with a more calmer pen effect giving it a glow effect:

Code: Select all

//Solid Star redux by ShohS
NUM = "60" 
stps="6" 
Aspc=1 

A0="sin(rnd(pi))*rnd(6)" 
A1="2 * pi" 
A2="choice({0, 1, 2, 3, 4, 5})*.01" 
A3="sin(rnd(pi))*rnd(6)" 

B0="" 
B1="1.1 * cos( t * A0 + A1)" 
B2="1.1 * sin( t * A0 + A1)" 

C0="((id/num)*(.08+A2))*bass*1.5" 
C1="2*pi*s" 
C2="c0 * cos( c1 )" 
C3="c0 * sin( c1 )" 

X0="(B1 * c2 - B2 * C3)" 
Y0="(B1 * c3 + B2 * C2)" 


LWdt="((1-(Id/num))*20)*bass*1.5" 
ConB=0 
pen="1-(Id/num)+bass*.2"
Meta="reactive=4 detail=4 density=5 morphable=4" 

Vers=270 
Nut

User avatar
juxtiphi
Moderator
Posts: 1469
Joined: Sat Jan 15, 2005 1:29 pm

Re: Simple Yet Unique Waveshape

Post by juxtiphi »

Nice!! Thank you for all your work and generosity!!!

VisuallFreak
Posts: 14
Joined: Tue Oct 08, 2024 8:43 am

Re: Simple Yet Unique Waveshape

Post by VisuallFreak »

juxtiphi wrote:
Mon Dec 02, 2024 5:58 pm
Nice!! Thank you for all your work and generosity!!!
+1000 :D

Post Reply