Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

VCTR

Runtime vector for Geometry Dash using SPWN

Usage

Creating a brand-new array

// Create brand-new vector with a maximum length
vec = @vctr::create(5);

// Display vector
vec.display(15, 15);

// Wait some time
wait(0.5);

// Add values
vec.push(1);
vec.push(2);
vec.push(3);

// Wait 500 ms and pop value from vector
wait(0.5);
vec.pop();

Create vector from existing array

vec = @vctr::from([1, 2, 3, 4, 5]);

vec.display(15, 15);

wait(0.5);
vec.pop();

About

Runtime vector for Geometry Dash using SPWN

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

Packages

Contributors