圣者
精华
|
战斗力 鹅
|
回帖 0
注册时间 2011-4-2
|
长途旅行书没了俺也不知道咋回事,是不是耐久完了,3DM倒是有人整合了每次时间改动就读书的功能,可以设置多少时间读书了。
地址:https://bbs.3dmgame.com/thread-6338432-1-1.html
修改Assembly-Csharp.dll可以改变读书界面的排序。不过看情况吧,螺舟现在天天改东西,我估计一两天就要改一次。
Assembly-Csharp.dll->UI_Reading
- private void UpdateBookList()
- {
- this._availableBookList.Clear();
- if (this._bookDisplayData.Count > 0)
- {
- List<ItemKey> keys = new List<ItemKey>();
- keys.AddRange(from displayData in this._bookDisplayData.Values
- select displayData.Key);
- this._availableBookList.AddRange((from m in keys
- orderby (from z in this._pageDisplayData[m.Id].ReadingProgress
- select Convert.ToInt32(z)).Sum()
- select m).ThenByDescending((ItemKey x) => this._bookDisplayData[x.Id].Value).ThenBy((ItemKey m) => m.TemplateId).ToList<ItemKey>());
- }
- this._selectBookScroll.OnItemRender = new Action<int, Refers>(this.OnRenderReadingBook);
- this._selectBookScroll.UpdateData(this._availableBookList.Count);
- }
复制代码
|
|