当我将src =“ https://aframe.io/releases/0.5.0/aframe.min.js”更新到最新版本0.9.0(src =“ https://aframe.io/releases /{0.9.0/aframe.min.js按照https://github.com/aframevr/aframe#builds),所有动画均无法正常工作。有人知道为什么吗?
import { Component } from '@angular/core';
import { of } from 'rxjs';
import { map } from 'rxjs/operators';
@Component({
selector: 'app-root',
template: '<p *ngFor="let test of map | async">Hier kommt: {{test}}</p>',
styleUrls: ['./app.component.css']
})
export class AppComponent {
public sourceOne = of([4, 5, 6]);
public map = this.sourceOne.pipe(map(res => res.map(num => num * 10)));
}