FIX: invalid number of arguments passed to SceneImage #10
This commit is contained in:
parent
c15e6905e3
commit
ee0e09b2df
|
@ -688,7 +688,8 @@ EXPORTS['empty-scene'] =
|
|||
var width = checkNonNegativeReal(MACHINE, 'empty-scene', 0);
|
||||
var height = checkNonNegativeReal(MACHINE, 'empty-scene', 1);
|
||||
var color = (MACHINE.a===3)? checkColor(MACHINE, 'empty-scene', 2) : null;
|
||||
return makeSceneImage(jsnums.toFixnum(width),
|
||||
|
||||
return new SceneImage(jsnums.toFixnum(width),
|
||||
jsnums.toFixnum(height),
|
||||
color,
|
||||
[],
|
||||
|
|
|
@ -303,6 +303,7 @@ SceneImage.prototype = heir(BaseImage.prototype);
|
|||
SceneImage.prototype.add = function(anImage, x, y) {
|
||||
return new SceneImage(this.width,
|
||||
this.height,
|
||||
null,
|
||||
this.children.concat([[anImage,
|
||||
x - anImage.getWidth()/2,
|
||||
y - anImage.getHeight()/2]]),
|
||||
|
@ -1311,7 +1312,7 @@ var colorListToImage = function(listOfColors,
|
|||
|
||||
|
||||
var makeSceneImage = function(width, height, children, withBorder) {
|
||||
return new SceneImage(width, height, children, withBorder);
|
||||
return new SceneImage(width, height, null, children, withBorder);
|
||||
};
|
||||
var makeCircleImage = function(radius, style, color) {
|
||||
return new EllipseImage(2*radius, 2*radius, style, color);
|
||||
|
|
Loading…
Reference in New Issue
Block a user