- Make sure View | Links is off
- Move to a level that contains link infoplane values
- Place a link infoplane value
- Turn on View | Links
- See that only the new value renders as a link
The problem was that LinksRenderPlane's Rendered field (which is used to tell the renderer whether to do a full re-render) was set to True by DrawLinks, which is called from the tile change handler to update the link for one tile. So, after that runs (which it does even when the LinksRenderPlane is not visible), Rendered is True so FindLinks (which is responsible for scanning the level for links) is not run.
I moved the Rendered = True statement to the end of the Render implementation so it's only called after the initial full render pass.
No comments:
Post a Comment