mirror of
https://github.com/genxium/DelayNoMore
synced 2025-09-24 04:39:10 +00:00
Misc fixes.
This commit is contained in:
@@ -1214,7 +1214,6 @@ $root.protos = (function() {
|
||||
* @property {number|null} [activeSkillId] PlayerDownsync activeSkillId
|
||||
* @property {number|null} [activeSkillHit] PlayerDownsync activeSkillHit
|
||||
* @property {number|null} [framesInvinsible] PlayerDownsync framesInvinsible
|
||||
* @property {number|null} [framesSelfLockVel] PlayerDownsync framesSelfLockVel
|
||||
* @property {string|null} [name] PlayerDownsync name
|
||||
* @property {string|null} [displayName] PlayerDownsync displayName
|
||||
* @property {string|null} [avatar] PlayerDownsync avatar
|
||||
@@ -1419,14 +1418,6 @@ $root.protos = (function() {
|
||||
*/
|
||||
PlayerDownsync.prototype.framesInvinsible = 0;
|
||||
|
||||
/**
|
||||
* PlayerDownsync framesSelfLockVel.
|
||||
* @member {number} framesSelfLockVel
|
||||
* @memberof protos.PlayerDownsync
|
||||
* @instance
|
||||
*/
|
||||
PlayerDownsync.prototype.framesSelfLockVel = 0;
|
||||
|
||||
/**
|
||||
* PlayerDownsync name.
|
||||
* @member {string} name
|
||||
@@ -1521,8 +1512,6 @@ $root.protos = (function() {
|
||||
writer.uint32(/* id 22, wireType 0 =*/176).int32(message.activeSkillHit);
|
||||
if (message.framesInvinsible != null && Object.hasOwnProperty.call(message, "framesInvinsible"))
|
||||
writer.uint32(/* id 23, wireType 0 =*/184).int32(message.framesInvinsible);
|
||||
if (message.framesSelfLockVel != null && Object.hasOwnProperty.call(message, "framesSelfLockVel"))
|
||||
writer.uint32(/* id 24, wireType 0 =*/192).int32(message.framesSelfLockVel);
|
||||
if (message.name != null && Object.hasOwnProperty.call(message, "name"))
|
||||
writer.uint32(/* id 997, wireType 2 =*/7978).string(message.name);
|
||||
if (message.displayName != null && Object.hasOwnProperty.call(message, "displayName"))
|
||||
@@ -1655,10 +1644,6 @@ $root.protos = (function() {
|
||||
message.framesInvinsible = reader.int32();
|
||||
break;
|
||||
}
|
||||
case 24: {
|
||||
message.framesSelfLockVel = reader.int32();
|
||||
break;
|
||||
}
|
||||
case 997: {
|
||||
message.name = reader.string();
|
||||
break;
|
||||
@@ -1775,9 +1760,6 @@ $root.protos = (function() {
|
||||
if (message.framesInvinsible != null && message.hasOwnProperty("framesInvinsible"))
|
||||
if (!$util.isInteger(message.framesInvinsible))
|
||||
return "framesInvinsible: integer expected";
|
||||
if (message.framesSelfLockVel != null && message.hasOwnProperty("framesSelfLockVel"))
|
||||
if (!$util.isInteger(message.framesSelfLockVel))
|
||||
return "framesSelfLockVel: integer expected";
|
||||
if (message.name != null && message.hasOwnProperty("name"))
|
||||
if (!$util.isString(message.name))
|
||||
return "name: string expected";
|
||||
@@ -1848,8 +1830,6 @@ $root.protos = (function() {
|
||||
message.activeSkillHit = object.activeSkillHit | 0;
|
||||
if (object.framesInvinsible != null)
|
||||
message.framesInvinsible = object.framesInvinsible | 0;
|
||||
if (object.framesSelfLockVel != null)
|
||||
message.framesSelfLockVel = object.framesSelfLockVel | 0;
|
||||
if (object.name != null)
|
||||
message.name = String(object.name);
|
||||
if (object.displayName != null)
|
||||
@@ -1896,7 +1876,6 @@ $root.protos = (function() {
|
||||
object.activeSkillId = 0;
|
||||
object.activeSkillHit = 0;
|
||||
object.framesInvinsible = 0;
|
||||
object.framesSelfLockVel = 0;
|
||||
object.name = "";
|
||||
object.displayName = "";
|
||||
object.avatar = "";
|
||||
@@ -1947,8 +1926,6 @@ $root.protos = (function() {
|
||||
object.activeSkillHit = message.activeSkillHit;
|
||||
if (message.framesInvinsible != null && message.hasOwnProperty("framesInvinsible"))
|
||||
object.framesInvinsible = message.framesInvinsible;
|
||||
if (message.framesSelfLockVel != null && message.hasOwnProperty("framesSelfLockVel"))
|
||||
object.framesSelfLockVel = message.framesSelfLockVel;
|
||||
if (message.name != null && message.hasOwnProperty("name"))
|
||||
object.name = message.name;
|
||||
if (message.displayName != null && message.hasOwnProperty("displayName"))
|
||||
@@ -4088,7 +4065,6 @@ $root.protos = (function() {
|
||||
* @property {number|null} [damage] MeleeBullet damage
|
||||
* @property {number|null} [selfLockVelX] MeleeBullet selfLockVelX
|
||||
* @property {number|null} [selfLockVelY] MeleeBullet selfLockVelY
|
||||
* @property {number|null} [framesSelfLockVel] MeleeBullet framesSelfLockVel
|
||||
* @property {number|null} [hitboxOffsetX] MeleeBullet hitboxOffsetX
|
||||
* @property {number|null} [hitboxOffsetY] MeleeBullet hitboxOffsetY
|
||||
* @property {number|null} [hitboxSizeX] MeleeBullet hitboxSizeX
|
||||
@@ -4215,14 +4191,6 @@ $root.protos = (function() {
|
||||
*/
|
||||
MeleeBullet.prototype.selfLockVelY = 0;
|
||||
|
||||
/**
|
||||
* MeleeBullet framesSelfLockVel.
|
||||
* @member {number} framesSelfLockVel
|
||||
* @memberof protos.MeleeBullet
|
||||
* @instance
|
||||
*/
|
||||
MeleeBullet.prototype.framesSelfLockVel = 0;
|
||||
|
||||
/**
|
||||
* MeleeBullet hitboxOffsetX.
|
||||
* @member {number} hitboxOffsetX
|
||||
@@ -4313,18 +4281,16 @@ $root.protos = (function() {
|
||||
writer.uint32(/* id 12, wireType 0 =*/96).int32(message.selfLockVelX);
|
||||
if (message.selfLockVelY != null && Object.hasOwnProperty.call(message, "selfLockVelY"))
|
||||
writer.uint32(/* id 13, wireType 0 =*/104).int32(message.selfLockVelY);
|
||||
if (message.framesSelfLockVel != null && Object.hasOwnProperty.call(message, "framesSelfLockVel"))
|
||||
writer.uint32(/* id 14, wireType 0 =*/112).int32(message.framesSelfLockVel);
|
||||
if (message.hitboxOffsetX != null && Object.hasOwnProperty.call(message, "hitboxOffsetX"))
|
||||
writer.uint32(/* id 15, wireType 0 =*/120).int32(message.hitboxOffsetX);
|
||||
writer.uint32(/* id 14, wireType 0 =*/112).int32(message.hitboxOffsetX);
|
||||
if (message.hitboxOffsetY != null && Object.hasOwnProperty.call(message, "hitboxOffsetY"))
|
||||
writer.uint32(/* id 16, wireType 0 =*/128).int32(message.hitboxOffsetY);
|
||||
writer.uint32(/* id 15, wireType 0 =*/120).int32(message.hitboxOffsetY);
|
||||
if (message.hitboxSizeX != null && Object.hasOwnProperty.call(message, "hitboxSizeX"))
|
||||
writer.uint32(/* id 17, wireType 0 =*/136).int32(message.hitboxSizeX);
|
||||
writer.uint32(/* id 16, wireType 0 =*/128).int32(message.hitboxSizeX);
|
||||
if (message.hitboxSizeY != null && Object.hasOwnProperty.call(message, "hitboxSizeY"))
|
||||
writer.uint32(/* id 18, wireType 0 =*/144).int32(message.hitboxSizeY);
|
||||
writer.uint32(/* id 17, wireType 0 =*/136).int32(message.hitboxSizeY);
|
||||
if (message.blowUp != null && Object.hasOwnProperty.call(message, "blowUp"))
|
||||
writer.uint32(/* id 19, wireType 0 =*/152).bool(message.blowUp);
|
||||
writer.uint32(/* id 18, wireType 0 =*/144).bool(message.blowUp);
|
||||
return writer;
|
||||
};
|
||||
|
||||
@@ -4412,26 +4378,22 @@ $root.protos = (function() {
|
||||
break;
|
||||
}
|
||||
case 14: {
|
||||
message.framesSelfLockVel = reader.int32();
|
||||
break;
|
||||
}
|
||||
case 15: {
|
||||
message.hitboxOffsetX = reader.int32();
|
||||
break;
|
||||
}
|
||||
case 16: {
|
||||
case 15: {
|
||||
message.hitboxOffsetY = reader.int32();
|
||||
break;
|
||||
}
|
||||
case 17: {
|
||||
case 16: {
|
||||
message.hitboxSizeX = reader.int32();
|
||||
break;
|
||||
}
|
||||
case 18: {
|
||||
case 17: {
|
||||
message.hitboxSizeY = reader.int32();
|
||||
break;
|
||||
}
|
||||
case 19: {
|
||||
case 18: {
|
||||
message.blowUp = reader.bool();
|
||||
break;
|
||||
}
|
||||
@@ -4509,9 +4471,6 @@ $root.protos = (function() {
|
||||
if (message.selfLockVelY != null && message.hasOwnProperty("selfLockVelY"))
|
||||
if (!$util.isInteger(message.selfLockVelY))
|
||||
return "selfLockVelY: integer expected";
|
||||
if (message.framesSelfLockVel != null && message.hasOwnProperty("framesSelfLockVel"))
|
||||
if (!$util.isInteger(message.framesSelfLockVel))
|
||||
return "framesSelfLockVel: integer expected";
|
||||
if (message.hitboxOffsetX != null && message.hasOwnProperty("hitboxOffsetX"))
|
||||
if (!$util.isInteger(message.hitboxOffsetX))
|
||||
return "hitboxOffsetX: integer expected";
|
||||
@@ -4568,8 +4527,6 @@ $root.protos = (function() {
|
||||
message.selfLockVelX = object.selfLockVelX | 0;
|
||||
if (object.selfLockVelY != null)
|
||||
message.selfLockVelY = object.selfLockVelY | 0;
|
||||
if (object.framesSelfLockVel != null)
|
||||
message.framesSelfLockVel = object.framesSelfLockVel | 0;
|
||||
if (object.hitboxOffsetX != null)
|
||||
message.hitboxOffsetX = object.hitboxOffsetX | 0;
|
||||
if (object.hitboxOffsetY != null)
|
||||
@@ -4610,7 +4567,6 @@ $root.protos = (function() {
|
||||
object.damage = 0;
|
||||
object.selfLockVelX = 0;
|
||||
object.selfLockVelY = 0;
|
||||
object.framesSelfLockVel = 0;
|
||||
object.hitboxOffsetX = 0;
|
||||
object.hitboxOffsetY = 0;
|
||||
object.hitboxSizeX = 0;
|
||||
@@ -4643,8 +4599,6 @@ $root.protos = (function() {
|
||||
object.selfLockVelX = message.selfLockVelX;
|
||||
if (message.selfLockVelY != null && message.hasOwnProperty("selfLockVelY"))
|
||||
object.selfLockVelY = message.selfLockVelY;
|
||||
if (message.framesSelfLockVel != null && message.hasOwnProperty("framesSelfLockVel"))
|
||||
object.framesSelfLockVel = message.framesSelfLockVel;
|
||||
if (message.hitboxOffsetX != null && message.hasOwnProperty("hitboxOffsetX"))
|
||||
object.hitboxOffsetX = message.hitboxOffsetX;
|
||||
if (message.hitboxOffsetY != null && message.hasOwnProperty("hitboxOffsetY"))
|
||||
|
Reference in New Issue
Block a user