Deleted user

Results 130371 comments of Deleted user
trafficstars

Test by activating the image proxy in the network settings

Why you close the issue it's not fixed in pojav. i have same problem i tested zink and i knew why my phone not hot with zink renderer i use...

Well #5865 issue is probably fixed

> > > 👌😅🤕 I had done a lot of debugging only fix for this problem is driver update. > > > > > > You mean turnip driver update?...

Yes but you can try use freedreno in solcraft launcher is similar to pojav but with many renderers also have freedreno if you have adreno 5xx or 6xx but you...

```ts constructor(options: RouterNodeStyleProps) { console.log('1. svg node constructor...'); super(options); console.log('2. svg node constructor...'); // 自定义节点的配置,实际是通过options传入的 this.getType = (data: NodeData) => SvgNodeType; } ``` 第我期望写一个自定义节点,继承自`BaseNode`它能够根据业务数据,绘制不同的svg图标。如`constructor`,我提供了一个`getType`方法用来根据业务数据获取节点类型 ```ts protected drawKeyShape(attributes: Required, shapeGroup: Group)...

我现在有两张不同业务的图,它们的节点图形不同,数据不同,我希望我的自定义节点能够在外部动态配置svg节点或者后续的替换也好,把svg节点绘制这块统一一下,外部自行根据节点数据,绘制不同的图形,如果不能动态配置,那我只能在`drawKeyShape `中通过写代码逻辑控制,但这样一来,实现就很麻烦了,需要写很多硬编码在里面了。

@Aarebecca 我参考G6实现,写了一段简短的代码来复现这个问题,和我前面提到的那个问题是相同的结果 ```typescript interface BaseShapeOptions { a: number; b: string; } abstract class BaseShape { options: BaseShapeOptions; constructor(options: BaseShapeOptions) { this.options = options; this.render(); console.log('this is is CustomNode: ', this...