Old template:
- Code: Select all
ageBooks = ('welcomebk', 'assignbook', 'answers', 'credits', 'linkbook1')
bookPages = (['cbjournal1'], ['cbjournal2'], ['cbjournal3'], ['cbcredits'], ['cblink1'])
And the new one:
- Code: Select all
ageBooks = ['GeneratorJournal','Dummy']
bookPages = [['genJournal01', 'genJournal02'],['Dummy']]
But I don't think that is it.
What seems to be happening (sounds like it anyway) is that, for some reason, Uru is not seeing you Python file at all, so it's not even giving you a chance to click in the first place.
We've checked the normal things. And that's about all I can think of......except for one other thing:
Open up your tsahvkotsah.py file in PlasmaShop.
Take a look at this line here:
- Code: Select all
class Campbravo(ptResponder,):
__module__ = __name__
def __init__(self):
ptResponder.__init__(self)
self.id = 51020001
Make sure that after the word class, you have your Age name just as you're exporting it. But the most important thing, look at the self.id = 51020001 line. 51010001 is unique to my Age. My Age presequence number is 5101. The 0001 is just a ID number. So look at your book in the Text editor in Blender, and use your presequence number you gave your Age. If it was like 185, then put 1850001 there.
The reason I mentioned this is this:
I've taken my Age and made it into Daytime. It now has a presequence number of 5102. I have not made a python file for it, and even though the books in it are the same, and point to the same Python file, that number is different......so Uru doesn't even give me a hot cursor when I put it over the books.
That's the last thing I can think of. If this isn't it, one of the Python experts is going to have to help you.