KESHYAS

About

Username
KESHYAS
Joined
Visits
1,902
Last Active
Roles
Member

Comments

  • Wow that's amazing! This is the best asset out of the store. I've been using this for a year, but haven't found anything better.
  • Thank you ! So what does "block adding" do? 1.Whether i check "block adding" or not Weapons obtained from monsters or weapons added through scripts are not added to the inventory and equipped epuipment as well. (when the limit is reached) also 2.c…
  • much appreciated thanks :) it works
  • wow..Thank you I just sent an email.
  • "I'll check out async loading in the game starter for the ORK project, though :)" Thank you. For mobile game retention, I need to reduce the load time (Unity Splash Logo> First Scene Entry Speed). First of all, in the test project above, 200 inde…
  • I downloaded the demo project of the Ork tutorial and tested it. (Because this is my big problem) how to reproduce simply : android build - mobile test ( galaxy Note 10+ Pro) ORK Game Tutorial 2018 Project- OrkProject.asset 1.2mb (default setting)…
  • After testing all day for several days, The culprit of the terrible loading time was OrkProject.asset. It consists of countless xml strings (xml is slow read/write, many strings) As the ork project editor data grows, its size grows tremendously. (36…
  • 1. Uncompressed Asset Bundle only editor data (as you answered + tutorial guide) 220mb , load time 20s 2. Uncompressed Asset Bundle editor data + gamestarter (all one asset bundle 170mb) 290mb , load time 30s (Rather, the load time increases by …
  • Thank you for answer! 1. Is it helpful to also use AssetBundles in Game Starter? 2. I checked the use asset bundle and filled in the blanks appropriately, Project assets cannot be loaded. asset name OrkProject bundle name project path origin Strea…
  • To speed up the loading of the first scene after the splash logo Removed all icons of ability,weapon,armor. (set to None) Nevertheless, the loading time was not shortened. Um... could it be helpful to just put all the textures like the combat prefab…
  • thanks! 1. I think it will be possible if i use the change game event of exp status. However, I can't think of what to do about the inventory stuff gains (currency gain, equipment, item gain). yes I am using immediately collect. When killing a mons…
  • I look forward to the next Ork update. Is 2.31 the last update for the Ork? so No more updates?
  • #varcfloatdeal#0.0# works thanks! it is displayed 0.4> 0.4 (previous #varfloatdeal# 0.4> 0)
  • string des = ORK.Game.ActiveGroup.Leader.Abilities.Get (id).GetDescription (); TextHelper.ReplaceSpecials (ref des); detail_Description.text = des; I am trying to display float variable 0.7 using #varfloatdeal#. in ability Description (use in …
  • There may be something I am using wrong. We want to use level 1 ability variables and level 3 ability variables. Each lv.1 ability-[change Variable 0] "deal" float/ set/ 5 lv.3 ability-[change Variable 0] "deal" float/ set/ 10 With the pl…
  • Thank you for answer. The "allow level change" of your abilities is checked. But still only use the highest level possible. It only seems to work if I change the level with the "level change key" as described in the option.
  • thanks! I tested it. When the player has 3 levels of Abilities and selects 1 level through Select Ability, the Ability stored in the Selected Data becomes Level 3. In this case, it doesn't seem to make sense to enter the ability level. Is there any …
  • Thank you always for the answers.
  • I'm developing a mobile game, and I recently learned that it can be hacked by a memory cheat tool like GameGuardian. So I want to use ork and actk together. I want to make most of the variables obscuredInt, but it seems a bit difficult for me :(
  • hm.. This seems like a problem about data serialize class. Since the processing logic for obscuredInt is not written, it seems that it is not displayed in the editor, and also saves/loads data. In a field that is not displayed, I can put a value in…