RimWorld
ilyvion's Laboratory
Mostrando 1-10 de 25 aportaciones
< 1  2  3 >
Actualización: 11 SEP a las 9:24 p. m.

Added

  • LogDevMessage and LogDebug with lambda only that are only called when dev mode is enabled which is useful to avoid doing potentially expensive calculations for the sake of logging when it's not.

Actualización: 29 AGO a las 4:37 a. m.

Added

  • ValueRef fields on Boxed and AnyBoxed type for ref-based access.

Actualización: 26 AGO a las 8:41 p. m.

Added

  • Log*Once utility logging methods on IlyvionMod that takes a ref bool to only log something once.

Actualización: 18 AGO a las 11:17 p. m.

Added

  • ConditionalWeakTable class that has the same API as 1.6 for use with older RimWorld versions.

Actualización: 30 JUL a las 6:46 a. m.

Added

  • CodeInstructionsExtensions.CallMatches for use with transpilers so you can do things like
    i.CallMatches(m => m.Name == "SortBy")
    .
  • Custom ParentName Handler support, so you can set a Def's ParentName to
    ::<full path to type that implements ilyvion.Laboratory.ParentNameHandlers.ICustomParentNameHandler>:<the data to pass to the handler's GetBestParentFor's parentNameData parameter>
    .
  • Custom ParentName Handler that lets you select a parent using XPath; an example of use is
    <ThingDef ParentName="::ilyvion.Laboratory.ParentNameHandlers.XPathParent:[defName='GrowthVat']">
    which will select the match of
    /Def/ThingDef[defName='GrowthVat']
    . (This feature isn't well tested and might not yet be ready for production use; use with caution for anything but simple testing.)

Actualización: 20 JUL a las 4:56 a. m.

Changed

  • Harmonize the category name used across the mod.

Actualización: 1 JUL a las 10:56 p. m.

Fixed

  • Lock Harmony to correct versions for 1.3 and 1.4 and then fix code to be compatible.

Actualización: 28 JUN a las 10:58 p. m.

[Auto-generated text]: Update on 6/29/2025 7:58:17 AM.

Actualización: 28 JUN a las 10:53 p. m.

Actualización: 28 JUN a las 10:50 p. m.

Added

  • Add 1.6 tag in workshop.