搜索结果: *

  • 用户:foonix
  • 按日期排序
  1. Resolved General [1.7.2] Loading any mods with dlls before Native causes siege engine placement icons to be not visible

    Just wanted to note, this seems to impact all decals. The left-click destination decal and tracking arrow decals do not appear. Mods that use map decals, there is no error however the decals are not visible.

    Here's how I'm creating the decals in my mod:

    插入代码块:
                MapScene mapScene = Campaign.Current.MapSceneWrapper as MapScene;
    
                decal = Decal.CreateDecal();
    
                decalEntity = GameEntity.CreateEmpty(mapScene.Scene);
                decalEntity.Name = "caravanCombatDecal";
                decalEntity.AddComponent(decal);
    
                mapScene.Scene.AddDecalInstance(decal, "editor_set", deletable: true);
后退
顶部 底部