BS Objects

Learn how BornomalaScript groups data and behavior with objects and blueprints.

Objects

Objects let you group related data and behavior together.

They are useful when one thing has several properties or actions that belong together.

In BornomalaScript, objects help you model real-world things in a clean and organized way.

Why Objects Matter

Objects are useful for:

  • storing related values in one place
  • attaching behavior to data
  • making code easier to read
  • building reusable structures for larger programs

What You Will Learn

This section introduces two object styles:

  • Normal Objects
  • Blueprint Based Objects

Learning Path

Start with normal objects, then move to blueprints once you are comfortable grouping values and methods together.

Quick Preview

  • Normal objects are good for directly grouping data
  • Blueprints are good for creating many similar objects

Once you understand these two topics, you will be ready to build cleaner and more structured programs.

Practice Tip

When you learn objects, try thinking in terms of real things like cars, students, books, or accounts.