0ptera / Loader-Redux

Factorio Mod adding Loaders to the game.
MIT License
11 stars 11 forks source link

Factorio Extended Plus intergration #49

Closed billbo99 closed 4 years ago

billbo99 commented 4 years ago

We have been asked to add support for Loader-Redux to FE+by one of our users. https://github.com/jimmyjon711/FactorioExtended-Plus-Transport/issues/23

Can you please confirm that we need to create our own loader prototypes first, then register them with your remote.call to have them added to a whitelist.

I only ask as "Deadlock loaders" had public API to create their loaders in the data phase.

0ptera commented 4 years ago

Correct, you have to create item, entity and recipe in your mod.

You could call my make_loader_item and make_loader_entity functions, but I don't think they will help you as they mostly set graphics to my internal paths.

My API only takes care of loaders in control stage. Note, I had no time to test the new 1x1 loader prototype.

billbo99 commented 4 years ago

thanks for the confirmation