Navigation

    CreatiCode Scratch Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • CreatiCode
    1. Home
    2. Tags
    3. question
    Log in to post
    • All categories
    • Helloperson91412

      Mysterious Red Blocks
      Help • blocks question • • ☁ Helloperson91412 ☁

      2
      0
      Votes
      2
      Posts
      64
      Views

      info-creaticode

      @helloperson91412

      That usually represents a block that’s no longer supported.

    • Helloperson91412

      CreatiCode Speed
      Help • question • • ☁ Helloperson91412 ☁

      2
      0
      Votes
      2
      Posts
      106
      Views

      golden.jaden-1b580e6f

      @helloperson91412 CreatiCode is designed for higher performance than standard MIT Scratch by utilizing modern web technologies and optimizing the runtime environment, rather than just being a 2D-only interpreter. It is built on top of the open-source version of Scratch 3.0, but it enhances performance in several key ways… and yeah…

    • jeffreyrb03-gmail

      What does 3D block update bone do and how does it work?
      Help • 3d-blocks 3d animations question • • JaecadeJnight

      3
      0
      Votes
      3
      Posts
      815
      Views

      jeffreyrb03-gmail

      @info-creaticode Ahh ok, I didn’t think to leave them blank since they’re for coordinates but I see now.
      54232b66-ec28-4197-ade6-ec5bd2608f24-image.png
      It also makes sense that it only works for the builtin ones. Thank you

    • NotJaldolfYT

      How do I make a 2d game that's multiplayer?
      Help • 2d-blocks multiplayer question • • NotJaldolfYT

      7
      1
      Votes
      7
      Posts
      1534
      Views

      ?

      hi my name is gennesis i love yuo

    • jeffreyrb03-gmail

      What is the email that CreatiCode uses for Google Sheets?
      Help • google-sheets question • • JaecadeJnight

      3
      1
      Votes
      3
      Posts
      842
      Views

      jeffreyrb03-gmail

      @info-creaticode Thank you

    • jeffreyrb03-gmail

      Am I allowed to use databases (or other data storage) for large amounts of data?
      Help • question database-blocks • • JaecadeJnight

      3
      0
      Votes
      3
      Posts
      783
      Views

      jeffreyrb03-gmail

      @info-creaticode Got it

    • jeffreyrb03-gmail

      (3d) Methods to seper individual models of a model that is a collection of multiple models
      Help • 3d-models 3d-blocks help question • • JaecadeJnight

      4
      0
      Votes
      4
      Posts
      1089
      Views

      info-creaticode

      @jeffreyrb03-gmail

      yes, in theory, the “carve” block would allow you to remove all other models and keep only the model you need. However, it will be extremely slow given the complexity of the existing model collection

    • jeffreyrb03-gmail

      Does saving private data act as like a "secret" or "environment variable"?
      Help • question help variables • • JaecadeJnight

      2
      0
      Votes
      2
      Posts
      782
      Views

      info-creaticode

      @jeffreyrb03-gmail

      It should not be used to store real secrets like passwords. The reason is that this block runs on the “client” side (the user’s browser), so when the data is sent over the Internet to the webserver, it is exposed in the network package.

      However, for most games/projects you build for learning, it should be good enough.

      The “private” mode is meant to store data specific for one user. Say 100 users are running your shared game. Suppose each of them can specify a secret passcode that can be used to save or load game progress. You can use this block and use the “private” mode, so the data is separated by user ID, and 2 users can’t see each other’s data.

    • jeffreyrb03-gmail

      How do I convert a string to a list
      Help • help question • • JaecadeJnight

      6
      1
      Votes
      6
      Posts
      1436
      Views

      info-creaticode

      @jeffreyrb03-gmail

      Thanks for the explanation. XO doesn’t really take much computation or memory resource, so likely this is because the XO server is blocked by your school.

    • D

      Coding bug...
      Help • 3d-blocks question help • • Deleted User

      8
      0
      Votes
      8
      Posts
      1440
      Views

      artisilv

      @info-creaticode
      Okay.

    • artisilv

      Green blocks?
      General Discussion • question help • • ꒰ Artisilv ꒱

      8
      0
      Votes
      8
      Posts
      1423
      Views

      artisilv

      @info-creaticode
      Thanks.

    • TAO

      "Important Forum Announcement" - Question
      Help • question forum • • The Ancient One

      15
      1
      Votes
      15
      Posts
      2786
      Views

      artisilv

      @011830-0a42ef84
      CC said that there are enough mods. And if we’re overwhelmed, they’ll add another one.

    • jeffreyrb03-gmail

      3d avatar style I like
      Feedback • 3d-blocks 3d-models question • • JaecadeJnight

      4
      0
      Votes
      4
      Posts
      1180
      Views

      info-creaticode

      @jeffreyrb03-gmail

      That’s called the “Chibi” style. We will sure add more such avatars when I can source them with proper license.

    • jeffreyrb03-gmail

      How would I "attach" an object to another object in 3D perfectly?
      Help • 3d-blocks help question • • JaecadeJnight

      7
      0
      Votes
      7
      Posts
      1357
      Views

      info-creaticode

      @jeffreyrb03-gmail

      Yes. Most likely, you had the hat as the “selected sprite object” instead of the person, so when you use a motion block, the hat is moved.

    • jeffreyrb03-gmail

      Are database collections private and secure?
      Help • database-blocks question • • JaecadeJnight

      3
      0
      Votes
      3
      Posts
      937
      Views

      jeffreyrb03-gmail

      @info-creaticode ok, thank you! I’ll make sure to use those

    • g2292321-cfd66cfa

      How to compile a CreatiCode project in .html or .exe?
      General Discussion • question creaticode project • • Snuper

      3
      1
      Votes
      3
      Posts
      1119
      Views

      info-creaticode

      @g2292321-cfd66cfa

      Embedding an iframe is good enough for “.html”, right?

      For .exe, as @jeffreyrb03-gmail said, we don’t support compiling our extension into exe, nor does it work offline. However, you can create a simple exe program that contains an HTML element, then embed the CreatiCode project inside that element, right?