Pixel Lide (Pixel art/ animations!)

Can you send a screenshot or something?

This is one of the best projects I have ever seen in Wick Editor! (No offense everybody else!)

1 Like

@Hamzah_Al_Ani Is there an Onion skin feature in pixel lide?

1 Like

Nope, not yet, but it’s definitely on my list of things to add

2 Likes

image
Something i made in 0.04

4 Likes

I noticed that I had some trouble with layers, that was fixed.
Pressing “s” autosaves the project
Save code has been replaced with files

I changed the “enter code” button to a “load file” one
Screenshot 2021-03-28 9.01.43 PM

Now you should be able to save your project to your device!
Screenshot 2021-03-28 9.01.12 PM

(Thank you pumpkinhead for teaching me how to work with files :)

I’m planning to try and add other export options (such as export png or etc.)
My plan for onion skinning is to have a 4th layer where frames gets added with the same pixels from the frame before and the one after, yet with lower opacity.

it stopped here


it happens whenever i hit load autosave

Try this version: html (2.3 MB)

Let me know if it’s still not working

Hey @Hamzah_Al_Ani can you break down how you managed to get saves working, as I’m planning on giving players the ability to make and share levels on Square Adventures. If you don’t want to i understand why bit if you do thank you!

I used the window’s local storage to save variables (window.localStorage)

To save a variable, you need to give it a name and a value.

For example, if your game has different slots, you can save a variable as “slot 1” with the value of 5

window.localStorage.setItem("slot1", 5 );

Now, the window has a variable saved as “slot1” with the value of 5

To read the value of this stored variable, you can use “window.localStorage.getItem("slot1");

For example:

alert(window.localStorage.getItem("slot1")); // Expect to see a 5

If you try to read the value of an unsaved variable, it’ll return the value of “null


Also, w3schools might be better at explaining this than me:

1 Like

I’m also planning on creating a level editor to replace infinite mode, and with sharing
Since you made save codes and drawing functional I thought you could help
Also for before, is there a way to do something if the value returns something like
If SaveFile=12
project.gotoAndStop(12)
also maybe a way to show an error when the save is null @Hamzah_Al_Ani

You can see if the frame is null in an if statement and warn the user if true, and I think an easy way to start off with using saved variables is to set a variable to the save, like this:

/* set save to the saved variable */
var save=window.localStorage.getItem("save");

/* Check to see if save exists */
if(save===null){
/* If true, let the user know */
alert("No save found!");
}else{ // Otherwise...
if(save===12){ // If the saved variable is 12
project.gotoAndStop(12); // go to frame 12
}
}

Whenever you need to change the value of the saved variable, just use something like this:

window.localStorage.setItem("Name", "Value" );
/* 
Replace "Name" with what you want to call the variable, and
"Value" with what you want to set the variable equal to.
*/

If you would like a simple example, let me know

Ok, thanks! I got it working, although do i have to paste the else part to get frames working or is there a more compact way?
Maybe i can change the variables to be their frame nums so maybe it can be like
Get save number
gotoandstop save number

No, you won’t really won’t the else part since you’re checking if it’s equal to 12

I’m glad that it worked :+1:

Yes, this works
If you do that, you might need the else part
(just so that the project doesn’t try to go to frame number “null” )

How does one do that, cause i don’t think it’s as easy as just putting gotoAndStop(localStorage.Save)

(Unless it is)

It kinda is, if you put it this way:

gotoAndStop(window.localStorage.getItem("Name"));

(Change name with the name of the stored variable)

Thanks!
So the end result should be
If save null, then alert
Else, get value and go to that frame
Thanks for your help :wink:
Willing to say how it goes!

1 Like

Yes, the end results is up to you (the programmer)

Good luck with your project :four_leaf_clover:

@Hamzah_Al_Ani , quick follow up, it doesn’t work. Here’s the load button code


When i click it, the button gets the save but the gotoandstop part doesn’t work, so it doesn’t go to the frame, but there’s no syntax errors, it just won’t work
If you need to directly mod it here’s the file squareadventures3-30-2021_9-14-06.wick

You forgot to set the save variable, I added a new layer that goes over all the frames with levels, and added this code in it:

// Add to this array all the frames that have levels
var Frames_With_Levels=[12,13,14,17,18,19,20,21,22,23,24,25,26];

// Check to see if the current frame is a level
if(Frames_With_Levels.indexOf(project.currentFrameNumber*1)!==-1){
    // Set the save
    window.localStorage.setItem("save",project.currentFrameNumber);
}

Try this:
squareadventures3-30-2021_10-07-56.wick (2.6 MB)

Try to play in classic mode first without loading the save, then pause the game, and restart it, and let me know if it takes you back to the level you were on