新增场景截图 requestScreenshot
This commit is contained in:
Vendored
+2
@@ -348,6 +348,7 @@ declare module es {
|
|||||||
readonly entities: EntityList;
|
readonly entities: EntityList;
|
||||||
readonly renderableComponents: RenderableComponentList;
|
readonly renderableComponents: RenderableComponentList;
|
||||||
readonly entityProcessors: EntityProcessorList;
|
readonly entityProcessors: EntityProcessorList;
|
||||||
|
_screenshotRequestCallback: Function;
|
||||||
readonly _sceneComponents: SceneComponent[];
|
readonly _sceneComponents: SceneComponent[];
|
||||||
_renderers: Renderer[];
|
_renderers: Renderer[];
|
||||||
readonly _postProcessors: PostProcessor[];
|
readonly _postProcessors: PostProcessor[];
|
||||||
@@ -364,6 +365,7 @@ declare module es {
|
|||||||
update(): void;
|
update(): void;
|
||||||
render(): void;
|
render(): void;
|
||||||
postRender(): void;
|
postRender(): void;
|
||||||
|
requestScreenshot(callback: Function): void;
|
||||||
addSceneComponent<T extends SceneComponent>(component: T): T;
|
addSceneComponent<T extends SceneComponent>(component: T): T;
|
||||||
getSceneComponent<T extends SceneComponent>(type: any): T;
|
getSceneComponent<T extends SceneComponent>(type: any): T;
|
||||||
getOrCreateSceneComponent<T extends SceneComponent>(type: any): T;
|
getOrCreateSceneComponent<T extends SceneComponent>(type: any): T;
|
||||||
|
|||||||
@@ -1719,6 +1719,15 @@ var es;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (this._screenshotRequestCallback) {
|
||||||
|
var tex = new egret.RenderTexture();
|
||||||
|
tex.drawToTexture(this, new es.Rectangle(0, 0, this.stage.stageWidth, this.stage.stageHeight));
|
||||||
|
this._screenshotRequestCallback(tex);
|
||||||
|
this._screenshotRequestCallback = null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
Scene.prototype.requestScreenshot = function (callback) {
|
||||||
|
this._screenshotRequestCallback = callback;
|
||||||
};
|
};
|
||||||
Scene.prototype.addSceneComponent = function (component) {
|
Scene.prototype.addSceneComponent = function (component) {
|
||||||
component.scene = this;
|
component.scene = this;
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
Vendored
+2
@@ -348,6 +348,7 @@ declare module es {
|
|||||||
readonly entities: EntityList;
|
readonly entities: EntityList;
|
||||||
readonly renderableComponents: RenderableComponentList;
|
readonly renderableComponents: RenderableComponentList;
|
||||||
readonly entityProcessors: EntityProcessorList;
|
readonly entityProcessors: EntityProcessorList;
|
||||||
|
_screenshotRequestCallback: Function;
|
||||||
readonly _sceneComponents: SceneComponent[];
|
readonly _sceneComponents: SceneComponent[];
|
||||||
_renderers: Renderer[];
|
_renderers: Renderer[];
|
||||||
readonly _postProcessors: PostProcessor[];
|
readonly _postProcessors: PostProcessor[];
|
||||||
@@ -364,6 +365,7 @@ declare module es {
|
|||||||
update(): void;
|
update(): void;
|
||||||
render(): void;
|
render(): void;
|
||||||
postRender(): void;
|
postRender(): void;
|
||||||
|
requestScreenshot(callback: Function): void;
|
||||||
addSceneComponent<T extends SceneComponent>(component: T): T;
|
addSceneComponent<T extends SceneComponent>(component: T): T;
|
||||||
getSceneComponent<T extends SceneComponent>(type: any): T;
|
getSceneComponent<T extends SceneComponent>(type: any): T;
|
||||||
getOrCreateSceneComponent<T extends SceneComponent>(type: any): T;
|
getOrCreateSceneComponent<T extends SceneComponent>(type: any): T;
|
||||||
|
|||||||
@@ -1719,6 +1719,15 @@ var es;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (this._screenshotRequestCallback) {
|
||||||
|
var tex = new egret.RenderTexture();
|
||||||
|
tex.drawToTexture(this, new es.Rectangle(0, 0, this.stage.stageWidth, this.stage.stageHeight));
|
||||||
|
this._screenshotRequestCallback(tex);
|
||||||
|
this._screenshotRequestCallback = null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
Scene.prototype.requestScreenshot = function (callback) {
|
||||||
|
this._screenshotRequestCallback = callback;
|
||||||
};
|
};
|
||||||
Scene.prototype.addSceneComponent = function (component) {
|
Scene.prototype.addSceneComponent = function (component) {
|
||||||
component.scene = this;
|
component.scene = this;
|
||||||
|
|||||||
Vendored
+1
-1
File diff suppressed because one or more lines are too long
@@ -27,6 +27,8 @@ module es {
|
|||||||
*/
|
*/
|
||||||
public readonly entityProcessors: EntityProcessorList;
|
public readonly entityProcessors: EntityProcessorList;
|
||||||
|
|
||||||
|
public _screenshotRequestCallback: Function;
|
||||||
|
|
||||||
public readonly _sceneComponents: SceneComponent[] = [];
|
public readonly _sceneComponents: SceneComponent[] = [];
|
||||||
public _renderers: Renderer[] = [];
|
public _renderers: Renderer[] = [];
|
||||||
public readonly _postProcessors: PostProcessor[] = [];
|
public readonly _postProcessors: PostProcessor[] = [];
|
||||||
@@ -184,6 +186,22 @@ module es {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 如果我们有一个屏幕截图请求处理它之前,最后渲染到backbuffer
|
||||||
|
if (this._screenshotRequestCallback){
|
||||||
|
let tex = new egret.RenderTexture();
|
||||||
|
tex.drawToTexture(this, new Rectangle(0, 0, this.stage.stageWidth, this.stage.stageHeight));
|
||||||
|
this._screenshotRequestCallback(tex);
|
||||||
|
this._screenshotRequestCallback = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 在下一次绘制完成后,会进行场景全屏截图
|
||||||
|
* @param callback
|
||||||
|
*/
|
||||||
|
public requestScreenshot(callback: Function){
|
||||||
|
this._screenshotRequestCallback = callback;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user