LogPhysics: Warning: UWorld::FindTeleportSpot called with an actor that is intersecting geometry. Failed to find new location likely due to movement component's 'UpdatedComponent' not being a collider component. LogSpawn: Warning: SpawnActor failed because of collision at the spawn location [X=4442.401 Y=718.429 Z=27.531] for [BP_TeslaM3_C] LogCarla: Warning: Failed to spawn actor 'vehicle.tesla.model3' LogCarla: Error: Actor not Spawned
时间: 2024-03-31 18:35:40 浏览: 357
最新偏移量:#No U的SIGS
这是一个错误的日志信息,看起来是在使用UE4引擎的时候出现的。根据日志信息,可能是因为在使用FindTeleportSpot函数时,传入的actor与地形相交导致无法找到新的位置。同时,SpawnActor函数在生成BP_TeslaM3_C这个蓝图类时,发现生成位置与某个物体碰撞,导致生成失败。最后一个错误是在使用Carla仿真器时,尝试生成名为'vehicle.tesla.model3'的角色,但生成失败。需要进一步分析代码和场景,才能确定具体的问题原因。
阅读全文