Skip to content

Commit

Permalink
few things
Browse files Browse the repository at this point in the history
  • Loading branch information
Joalor64GH authored Dec 4, 2024
1 parent bd58806 commit ba5b499
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Project.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<!-- [ Window Settings ] -->

<window width="1280" height="720" fps="60" background="#000000" hardware="true" vsync="false" />
<window if="desktop" orientation="landscape" fullscreen="false" resizable="true" />
<window if="desktop" orientation="landscape" fullscreen="false" resizable="true" allow-high-dpi="true" />
<window if="mac" orientation="auto" fullscreen="false" resizable="true" vsync="false" allow-high-dpi="true" />
<window if="mobile" orientation="landscape" fullscreen="true" width="0" height="0" />
<window if="mobile" orientation="landscape" fullscreen="true" width="0" height="0" allow-high-dpi="true" />

<!-- [ Custom Defines ] -->

Expand Down
2 changes: 1 addition & 1 deletion docs/Scripting.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ function update(elapsed:Float) {
FlxG.camera.scroll.y + FlxG.camera.height
]);
}
```

## Need Help?
If you need any general help or something goes wrong with your script, report an issue [here](https://github.com/Joalor64GH/Rhythmo-SC/issues).
2 changes: 2 additions & 0 deletions source/modding/Hscript.hx
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,9 @@ class Hscript extends FlxBasic {
setVariable('StringBuf', StringBuf);
setVariable('String', String);
setVariable('StringTools', StringTools);
#if sys
setVariable('Sys', Sys);
#end
setVariable('Type', Type);
setVariable('Xml', Xml);

Expand Down
2 changes: 2 additions & 0 deletions source/modding/ModHandler.hx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ class ModHandler {
'json' => TEXT,
'txt' => TEXT,
'hxs' => TEXT,
'frag' => TEXT,
'vert' => TEXT,
'ttf' => FONT,
'otf' => FONT
];
Expand Down

0 comments on commit ba5b499

Please sign in to comment.