diff --git a/protos/pslGraphics.proto b/protos/pslGraphics.proto index 1ec411d..9bbb442 100644 --- a/protos/pslGraphics.proto +++ b/protos/pslGraphics.proto @@ -9,6 +9,7 @@ message PslGraphicStorage { repeated PslLight pslLights = 2; // psl圆形灯 repeated PslButton pslButtons = 3; repeated PslKey pslKeys = 4; + repeated PslText pslTexts = 5; } @@ -41,3 +42,11 @@ message PslKey { // string topAnnotation = 3; // string rightAnnotation = 4; } +/** psl文字 */ +message PslText { + graphicData.CommonInfo common = 1; + string code = 2; + string content = 3; + string color = 4; + int32 fontSize = 5; +}