Godot Nature of Code  1.2.0
Nature of Code implemented in Godot Engine
Public Member Functions | List of all members
Examples.Chapter1.C1Example1 Class Reference

Example 1.1 - Bouncing ball, no vectors. More...

Inheritance diagram for Examples.Chapter1.C1Example1:
Examples.IExample

Public Member Functions

string GetSummary ()
 Output a summary text More...
 

Detailed Description

Example 1.1 - Bouncing ball, no vectors.

Uses _Draw function and manual float coordinates (x/y) and speed.

Definition at line 14 of file C1Example1.cs.

Member Function Documentation

◆ GetSummary()

string Examples.Chapter1.C1Example1.GetSummary ( )
inline

Output a summary text

Returns
Summary text

Implements Examples.IExample.

Definition at line 16 of file C1Example1.cs.

17  {
18  return "Example 1.1:\n"
19  + "Bouncing ball, no vectors";
20  }

The documentation for this class was generated from the following file: