I would like a 1X1 solar panel I can put in odd places around my base that only produce 4-6kw (less efficient than normal ones but enough for an inserter or lamp)
Would hardly be game breaking and not entirely useful but yeah.
[REQUEST] 1X1 mini solar panel
- sporefreak
- Fast Inserter
- Posts: 185
- Joined: Sun Apr 17, 2016 12:55 am
- Contact:
- ArderBlackard
- Long Handed Inserter
- Posts: 74
- Joined: Thu May 05, 2016 12:41 pm
- Contact:
Re: [REQUEST] 1X1 mini solar panel
I hope this will do the thing.
It adds the "Small solar panel" entity which is researched along with the "Solar panel" and is capable to produce 5 kW (the cost is 1/5 of the large solar panel cost)
It adds the "Small solar panel" entity which is researched along with the "Solar panel" and is capable to produce 5 kW (the cost is 1/5 of the large solar panel cost)
- Attachments
-
- mini-solar-panel_1.0.0.zip
- (10 KiB) Downloaded 98 times
Gib dich hin bis du Glück bist
- sporefreak
- Fast Inserter
- Posts: 185
- Joined: Sun Apr 17, 2016 12:55 am
- Contact:
Re: [REQUEST] 1X1 mini solar panel
Awesome, Thanks! I tried looking into adding my own but I seem to be unable to change the size of the panels (I couldn't get them smaller than 3X3)
- ArderBlackard
- Long Handed Inserter
- Posts: 74
- Joined: Thu May 05, 2016 12:41 pm
- Contact:
Re: [REQUEST] 1X1 mini solar panel
You are welcome!
If it may be of any help for the future - besides changing the image you need to set proper values for collision_box and selection_box like this:
Vanilla (3x3):
Small (1x1):
If it may be of any help for the future - besides changing the image you need to set proper values for collision_box and selection_box like this:
Vanilla (3x3):
Code: Select all
{
...
collision_box = {{-1.4, -1.4}, {1.4, 1.4}},
selection_box = {{-1.5, -1.5}, {1.5, 1.5}},
...
}
Code: Select all
{
...
collision_box = {{-0.4, -0.4}, {0.4, 0.4}},
selection_box = {{-0.5, -0.5}, {0.5, 0.5}},
...
}
Gib dich hin bis du Glück bist