Jump to content

Panda 2 Beta feedback


enpu
 Share

Recommended Posts

Panda 2 1.6.0 beta version is now available for testing:

https://www.panda2.io/beta

To see what's new in the version, please look at the official roadmap:

https://www.panda2.io/roadmap

Post any feedback or comments here. If you find bugs, please create new bug report (or if you don't have GitHub account and don't want to create one, post here).

Link to comment
Share on other sites

  • enpu pinned this topic

Hi @enpu

Sorry, but still the same thing for me - can't select and open any modules or classes.

When I try to create a new project, it fails and tell me 'No html file found from folder.'

Also, now the modules button is gone and I only see a files button. I see all my files when I press it, but can't open them :(

*** EDIT - when I browse the files and go inside the src folder, I can open them, but not when I see the modules etc by default ***

 

Link to comment
Share on other sites

image.png.45090ce4327271ef5b9dabcbf38d1dfe.png

Aaw, now I want to be able to ctlt+click on the the main.js, and have it open. (It's ok, I'm just spoilt)

Also, I have the same issue as Ninja, I've opened my project, but I'm unable to select the items on the side.

image.png.ced44d56d51d54294d76ed3864e7826e.png

(Pressing the Button asset no longer jumps me to the Button object).

This is in Windows, although I'm not sure if that should be relevant? I've got an ubuntu VM I can kick open to see if it's got the same issue.

The ctrl+click on the art assets opening them in an editor is great! +1.

..and just noticed Enpu is already onto the fix. :) Cheers!

 

Link to comment
Share on other sites

Hi @enpu

Awesome, works flawlessly now :)

One thing I've noticed, is that you removed the button with which you could toggle between modules and modules + classes.

Sometimes, when looking at my code, I like displaying only the modules as it's a cleaner way of displaying all my levels etc.

Any chance this could be added back in?

Thank you!!

Link to comment
Share on other sites

8 minutes ago, Ninjadoodle said:

toggle between modules and modules + classes

There were no such view as "modules + classes", it was only modules or classes.

Since modules are exactly same thing as a single JavaScript file, which you can now see from files sidebar, i though that there was really no reason to have a sidebar that only shows modules anymore, because the view would be almost same as the files.

But... in your case when you have multiple projects in same folder with lots of modules, it would actually make sense. So yeah, i will take a look to see how easy would it be to add it back, maybe put it in settings so you can toggle it on and off, because i thinks it's not really useful on most projects and makes it just more complicated and maybe confusing.

 

Link to comment
Share on other sites

@enpu

I just noticed something else. I have a bunch of modules included in my project and all of them but one, show in the left bar.

For some reason 'objects' is missing ...

game.module(
    'game.mainR1'
)
.require(
    'game.menu',
    'game.objects',
    // ***********
    // * ROUND 1 *
    // ***********
    'game.stage01',
    'game.stage02',
    'game.stage03',
    'game.stage04',
    'game.stage05',
    'game.stage06',
    'game.stage07',
    'game.stage08',
    'game.stage09',
    'game.stage10',
    'game.stage11',
    'game.stage12',
    'game.stage13',
    'game.stage14',
    'game.stage15',
    'game.stage16',
    'game.stage17',
    'game.stage18',
    'game.stage19',
    'game.stage20',
    'game.won',
    // ***********
    // * PLUGINS *
    // ***********
    'plugin.essentials',
    'plugin.instantgames'
)
.body(function() {

// CONFIG
game.config.name = 'Shurizzle - Round 1';
game.config.start = 'Stage01';
game.config.storage.id = 'shurizzleR1';
game.config.system.startScene = 'MainR1';

game.createScene('MainR1', {
    init: function() {
        game.system.setScene('Menu');
    }
});

});

Also, when loading a version of my game with all levels included, it seems to be loading the wrong 'main' file ...

The index for the projects is this ...

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Panda 2</title>
    <script type="text/javascript" src="src/engine/core.js"></script>
    <script type="text/javascript" src="src/game/config.js"></script>
    <script type="text/javascript" src="src/game/main.js"></script>
</head>
<body>
</body>
</html>

Yes, the project is loading 'mainR1' which only includes a portion of the levels.

Please let me know if you need me to send you a project etc.

Thank you!

Link to comment
Share on other sites

29 minutes ago, Ninjadoodle said:

Also, when loading a version of my game with all levels included, it seems to be loading the wrong 'main' file ...

I can't reproduce this with the project that you sent. Are you sure you are loading correct html file?

Can you tell me exact steps how to reproduce that issue?

Link to comment
Share on other sites

30 minutes ago, Ninjadoodle said:

I have a bunch of modules included in my project and all of them but one, show in the left bar.

There are files or classes in the sidebar, so are you missing "objects.js" file when viewing files in the sidebar?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...