gpt4 book ai didi

pixi.js - 用 pixi.js 画一个矩形

转载 作者:行者123 更新时间:2023-12-03 11:05:36 27 4
gpt4 key购买 nike

[Chrome v32]

如何使用 PIXI.js 库绘制基本的红色矩形?

我试过这个(不工作)

var stage = new PIXI.Stage(0xFFFFFF);
var renderer = PIXI.autoDetectRenderer(400, 300);
document.body.appendChild(renderer.view);
renderer.render(stage);
var rect = new PIXI.Rectangle(100, 150, 50, 50);
stage.addChild(rect);

错误:

Uncaught TypeError: Object [object Object] has no method 'setStageReference'

最佳答案

您无法渲染几何图形 ( Pixi.Rectangle ),它们仅用于计算。您可以改为执行以下操作:

var graphics = new PIXI.Graphics();

graphics.beginFill(0xFFFF00);

// set the line style to have a width of 5 and set the color to red
graphics.lineStyle(5, 0xFF0000);

// draw a rectangle
graphics.drawRect(0, 0, 300, 200);

stage.addChild(graphics);

source

关于pixi.js - 用 pixi.js 画一个矩形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22073350/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com