That would definitely open things up to cover most buildings.
By the way, I think @boblogsan already has a suite of tools to convert from Blender to 3DO - https://icr2noorok.tumblr.com/
I believe it is a Blender plug-in, and I suspect this is the best way to create 3D objects for the game. Unfortunately I would have to learn Blender which has its own learning curve. I hope others who know Blender already (or willing to learn) can take a look at this.
Question for the experts: I have a large building a couple city blocks from the track that I would like to be visible from a long distance. Right now it is pops into view halfway down the front straightaway which feels distracting. I am hoping there is a way to adjust this, and I was thinking about Cleveland where the large skyscraper seems visible from far away. Moving the building closer to the track somewhat fixes the issue but not ideal if I want to make the placement more realistic.
This is the .3D code that I made for this building.
I believe I can answer my own question. The key is to add the object to the ObjectList lines for more track sections in the track.3d file:
ObjectList_R2_1: LIST {__TSO41, __TSO40, __TSO25, __TSO26, __TSO2, __TSO38};
The Holiday Inn hotel is TSO41 and TSO40. So I just added them to the couple of track sections before where OPE had automatically placed them in. Also, I found that the order matters - I had some trouble with the farther building bleeding into the closer building, this seemed to be fixed by reordering the ObjectList - for example putting the hotel at the beginning of the list ensures that they are drawn first.
Made four hotels so far. From left to right in the illustration: Holiday Inn, Imperial Palace, Flamingo and Caesars Palace.
I have a feeling that the 3DO is not meant to have polygons with above 5 vertices. Strange things happen to the roof polygons for the more complex buildings. But they load in game fine and the roofs are not visible.
(04-06-2020, 12:07 PM)checkpoint10 Wrote: Made four hotels so far. From left to right in the illustration: Holiday Inn, Imperial Palace, Flamingo and Caesars Palace.
.
I hope you have a permit to do so much construction ????
04-07-2020, 01:09 AM (This post was last modified: 04-07-2020, 01:10 AM by checkpoint10.)
I think I may have found the problem causing the game to crash at the start of the race. In CAESARS.TXT there are a few parameters that were not updated. Please try with the following values:
I think the previous values exceeded the track length and causes the issue on starting a race. With the above values I can actually start the race now even though the pace car behaves strangely at the end of the pace lap; however if you had recorded better AI for it, maybe that will address it.
04-07-2020, 07:31 AM (This post was last modified: 04-07-2020, 05:29 PM by Pavel 69.)
(04-06-2020, 09:29 AM)checkpoint10 Wrote: I believe I can answer my own question. The key is to add the object to the ObjectList lines for more track sections in the track.3d file:
ObjectList_R2_1: LIST {__TSO41, __TSO40, __TSO25, __TSO26, __TSO2, __TSO38};
The Holiday Inn hotel is TSO41 and TSO40. So I just added them to the couple of track sections before where OPE had automatically placed them in. Also, I found that the order matters - I had some trouble with the farther building bleeding into the closer building, this seemed to be fixed by reordering the ObjectList - for example putting the hotel at the beginning of the list ensures that they are drawn first.
Yes you can manually add objects to this list. I do it that way. You also can use variose tree functins from 3D object creation to solve some drawing isuues (BSPF, BSPN and others).
Objects order in the list metters. First object in the list - farthers object, last object - closest when you drive in normal direction. When you drive backward opposit is true. Also if the object is presented also in next track section it will aways be farthers for objects in previouse section (no matter where it placed in list in previouse section).
(04-06-2020, 12:07 PM)checkpoint10 Wrote: Made four hotels so far. From left to right in the illustration: Holiday Inn, Imperial Palace, Flamingo and Caesars Palace.
I have a feeling that the 3DO is not meant to have polygons with above 5 vertices. Strange things happen to the roof polygons for the more complex buildings. But they load in game fine and the roofs are not visible.
Can you post 3D file for this building. I've made polygons with more vertices, is not a problem for the game if the lie in same plane.
Here is an example of an L-shaped building where I have sides with 4 vertices each, but a roof with many vertices. I post the code below and screenshots of what it looks like in OPE and 3DOEd.
Something fun I made in Notepad! The one thing surprising on this one is that the BSPF point references needed to be reversed for the 2 right columns compared to the 2 left. Not entirely sure why that is because they are otherwise the same object which I just copied over 3 times. Anyway, it worked!!
Other thing I learned while writing the .3D file is that you can name your points and polygons anything, and be strategic about it. I named the points for the columns in such a way that I only had to add a prefix to all the names each time I duplicated it.