forked from triwav/roku-jsdocs-plugin
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Better handles modules and namespaces, so namespaces can have multipl…
…e levels, and classes are put in the correct modules
- Loading branch information
1 parent
eeacca4
commit 03ec477
Showing
7 changed files
with
342 additions
and
2,299 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
' @module BGE | ||
namespace BGE.Debug.Alpha.Beta | ||
|
||
class DebugWindow extends BGE.UI.UiContainer | ||
|
||
function new(game as BGE.Game) as void | ||
super(game) | ||
m.backgroundRGBA = BGE.RGBAtoRGBA(128, 128, 128, 0.5) | ||
m.padding.set(10) | ||
end function | ||
|
||
|
||
|
||
|
||
end class | ||
|
||
end namespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.