View Issue Details
| ID | Project | Category | View Status | Date Submitted | Last Update |
|---|---|---|---|---|---|
| 0000551 | Medieval Engineers | Enhancement | public | 2026-01-10 13:58 | 2026-07-02 11:02 |
| Reporter | peaceman | Assigned To | equinox | ||
| Priority | normal | Severity | feature | Reproducibility | have not tried |
| Status | resolved | Resolution | fixed | ||
| Platform | Windows | ||||
| Target Version | 0.7.4.58E24F | Fixed in Version | 0.7.4.58E24F | ||
| Summary | 0000551: Modding request for MyBillboard: add UV variables | ||||
| Description | I would like to be able to set UV's directly in the MyBillboard class. I have currently added it like this to custom DLLs: In MyBillboard: public Vector2? UV0; public Vector2? UV1; public Vector2? UV2; public Vector2? UV3; In MyBillboardRenderer -> GatherInternal: ... myBillboardVertexData.V3.Position = (Vector3)vector3D4; if (myBillboard.UV0 != null) { myBillboardVertexData.V0.Texcoord = new HalfVector2(myBillboard.UV0.Value); myBillboardVertexData.V1.Texcoord = new HalfVector2(myBillboard.UV1.Value); myBillboardVertexData.V2.Texcoord = new HalfVector2(myBillboard.UV2.Value); myBillboardVertexData.V3.Texcoord = new HalfVector2(myBillboard.UV3.Value); } else { .... } MyBillboardRenderer.m_arrayDataBillboards.Data[i] = myBillboardData; ... Also this code ( MyTransparentMaterials.GetMaterial(myBillboard.Material) ) is used a lot of times and not very performance friendly. Being able to set a material reference directly rather than a string would be good | ||||
| Tags | No tags attached. | ||||
| Date Modified | Username | Field | Change |
|---|---|---|---|
| 2026-01-10 13:58 | peaceman | New Issue | |
| 2026-01-23 18:04 | equinox | Assigned To | => equinox |
| 2026-01-23 18:04 | equinox | Status | new => assigned |
| 2026-01-23 18:04 | equinox | Target Version | => 0.7.4.58E24F |
| 2026-01-29 02:15 | equinox | Status | assigned => in progress |
| 2026-07-02 11:02 | equinox | Status | in progress => resolved |
| 2026-07-02 11:02 | equinox | Resolution | open => fixed |
| 2026-07-02 11:02 | equinox | Fixed in Version | => 0.7.4.58E24F |