mirror of
https://github.com/FunkinCrew/Funkin.git
synced 2025-04-03 18:59:42 -04:00
add scrollfactor and alpha + grammatical fix in StageData
This commit is contained in:
parent
87b1fc92f8
commit
ff56b1948a
2 changed files with 26 additions and 1 deletions
source/funkin
|
@ -171,7 +171,7 @@ typedef StageDataProp =
|
|||
* How much the prop scrolls relative to the camera. Used to create a parallax effect.
|
||||
* Represented as an [x, y] array of two floats.
|
||||
* [1, 1] means the prop moves 1:1 with the camera.
|
||||
* [0.5, 0.5] means the prop half as much as the camera.
|
||||
* [0.5, 0.5] means the prop moves half as much as the camera.
|
||||
* [0, 0] means the prop is not moved.
|
||||
* @default [0, 0]
|
||||
*/
|
||||
|
@ -261,4 +261,24 @@ typedef StageDataCharacter =
|
|||
*/
|
||||
@:optional
|
||||
var cameraOffsets:Array<Float>;
|
||||
|
||||
/**
|
||||
* How much the character scrolls relative to the camera. Used to create a parallax effect.
|
||||
* Represented as an [x, y] array of two floats.
|
||||
* [1, 1] means the character moves 1:1 with the camera.
|
||||
* [0.5, 0.5] means the character moves half as much as the camera.
|
||||
* [0, 0] means the character is not moved.
|
||||
* @default [0, 0]
|
||||
*/
|
||||
@:optional
|
||||
@:default([0, 0])
|
||||
var scroll:Array<Float>;
|
||||
|
||||
/**
|
||||
* The alpha of the character, as a float.
|
||||
* @default 1.0
|
||||
*/
|
||||
@:optional
|
||||
@:default(1.0)
|
||||
var alpha:Float;
|
||||
};
|
||||
|
|
|
@ -454,6 +454,11 @@ class Stage extends FlxSpriteGroup implements IPlayStateScriptedClass implements
|
|||
character.cameraFocusPoint.x += stageCharData.cameraOffsets[0];
|
||||
character.cameraFocusPoint.y += stageCharData.cameraOffsets[1];
|
||||
|
||||
character.scrollFactor.x += stageCharData.scroll[0];
|
||||
character.scrollFactor.y += stageCharData.scroll[1];
|
||||
|
||||
character.alpha = stageCharData.alpha;
|
||||
|
||||
#if FEATURE_DEBUG_FUNCTIONS
|
||||
// Draw the debug icon at the character's feet.
|
||||
if (charType == BF || charType == DAD)
|
||||
|
|
Loading…
Add table
Reference in a new issue